You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graphql/types.lua
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -289,7 +289,8 @@ end
289
289
290
290
types.int=types.scalar({
291
291
name='Int',
292
-
description="The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values from -(2^31) to 2^31 - 1, inclusive.",
292
+
description="The `Int` scalar type represents non-fractional signed whole numeric values. " ..
293
+
"Int can represent values from -(2^31) to 2^31 - 1, inclusive.",
293
294
serialize=coerceInt,
294
295
parseValue=coerceInt,
295
296
parseLiteral=function(node)
@@ -302,7 +303,8 @@ types.int = types.scalar({
302
303
303
304
types.long=types.scalar({
304
305
name='Long',
305
-
description="The `Long` scalar type represents non-fractional signed whole numeric values. Long can represent values from -(2^52) to 2^52 - 1, inclusive.",
306
+
description="The `Long` scalar type represents non-fractional signed whole numeric values. " ..
307
+
"Long can represent values from -(2^52) to 2^52 - 1, inclusive.",
306
308
serialize=coerceLong,
307
309
parseValue=coerceLong,
308
310
parseLiteral=function(node)
@@ -329,7 +331,8 @@ types.float = types.scalar({
329
331
330
332
types.string=types.scalar({
331
333
name='String',
332
-
description="The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
334
+
description="The `String` scalar type represents textual data, represented as UTF-8 character sequences. " ..
335
+
"The String type is most often used by GraphQL to represent free-form human-readable text.",
0 commit comments