feat: use SafeInt replace Float (#5613)

This commit is contained in:
DarkSky
2024-01-17 12:36:21 +00:00
parent b9f20877d0
commit ee8ec47a4f
11 changed files with 40 additions and 18 deletions
@@ -1,4 +1,4 @@
query checkBlobSizes($workspaceId: String!, $size: Float!) {
query checkBlobSizes($workspaceId: String!, $size: SafeInt!) {
checkBlobSize(workspaceId: $workspaceId, size: $size) {
size
}
@@ -13,7 +13,7 @@ export const checkBlobSizesQuery = {
definitionName: 'checkBlobSize',
containsFile: false,
query: `
query checkBlobSizes($workspaceId: String!, $size: Float!) {
query checkBlobSizes($workspaceId: String!, $size: SafeInt!) {
checkBlobSize(workspaceId: $workspaceId, size: $size) {
size
}