fetch latest version tag from docker hub (#11362)

closes #11352

---------

Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
nitin
2025-04-08 14:25:03 +05:30
committed by GitHub
parent 95eba07f6e
commit ea93ac6348
11 changed files with 273 additions and 77 deletions
@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const GET_VERSION_INFO = gql`
query GetVersionInfo {
versionInfo {
currentVersion
latestVersion
}
}
`;