Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

non-schema-scalars.json 1.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  1. [
  2. {
  3. "name": "Boolean",
  4. "description": "Represents `true` or `false` values."
  5. },
  6. {
  7. "name": "Float",
  8. "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point)."
  9. },
  10. {
  11. "name": "ID",
  12. "description": "Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID."
  13. },
  14. {
  15. "name": "Int",
  16. "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1."
  17. },
  18. {
  19. "name": "String",
  20. "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text."
  21. }
  22. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...