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
First an explanation: To create a new scalar type to the GraphQL schema language, you must create an
@@ -520,6 +515,7 @@ In the future we might expand this list and use the more comprehensive list foun
520
515
A long integer type for [graphql-js](https://github.com/graphql/graphql-js). This implementation gives you more than 32 bits rather than the default 32-bit GraphQLInt. [It uses native `BigInt` implementation of JavaScript.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt)
521
516
The [GraphQL spec](https://facebook.github.io/graphql/#sec-Int) limits its Int type to 32-bits. Maybe you've seen this error before:
522
517
[Issue on graphql-js](https://github.com/graphql/graphql-js/issues/292)
518
+
523
519
```
524
520
GraphQLError: Argument "num" has invalid value 9007199254740990.
525
521
Expected type "Int", found 9007199254740990.
@@ -541,7 +537,7 @@ A field whose value is a [hex color code](https://en.wikipedia.org/wiki/Web_colo
541
537
542
538
### HSL
543
539
544
-
A field whose value is a [CSS HSL color](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl()_and_hsla()).
540
+
A field whose value is a [CSS HSL color](<https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl()_and_hsla()>).
545
541
546
542
### IPv4
547
543
@@ -565,15 +561,15 @@ A field whose value is a valid [TCP port](https://en.wikipedia.org/wiki/Transmis
565
561
566
562
### RGB
567
563
568
-
A field whose value is a [CSS RGB color](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()_and_rgba()).
564
+
A field whose value is a [CSS RGB color](<https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()_and_rgba()>).
569
565
570
566
### RGBA
571
567
572
-
A field whose value is a [CSS RGBA color](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()_and_rgba()).
568
+
A field whose value is a [CSS RGBA color](<https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()_and_rgba()>).
0 commit comments