scalar.graphql 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Represents an ISO 8601-encoded date and time string.
  2. # For example, 3:50 pm on September 7, 2019 in the time zone of UTC (Coordinated Universal Time) is
  3. # represented as "2019-09-07T15:50:00Z".
  4. scalar DateTime
  5. # Represents an RFC 3986 and
  6. # RFC 3987-compliant URI string.
  7. #
  8. # For example, "https://johns-apparel.myshopify.com" is a valid URL. It includes a scheme (https) and a host
  9. # (johns-apparel.myshopify.com).
  10. scalar URL
  11. # An unsigned 64-bit integer. Represents whole numeric values between 0 and 2^64 - 1 encoded as a string of base-10 digits.
  12. #
  13. # Example value: "50".
  14. scalar UnsignedInt64
  15. # A string containing a strict subset of HTML code. Non-allowed tags will be stripped out.
  16. # Allowed tags:
  17. #
  18. # a (allowed attributes: href, target)
  19. # b
  20. # br
  21. # em
  22. # i
  23. # strong
  24. # u
  25. # Use HTML instead if you need to
  26. # include other HTML tags.
  27. # Example value: "Your current domain is <strong>johns-apparel.myshopify.com</strong>."
  28. scalar FormattedString
  29. # A signed decimal number, which supports arbitrary precision and is serialized as a string.
  30. #
  31. # Example values: "29.99", "29.999".
  32. scalar Decimal
  33. # A monetary value string without a currency symbol or code. Example value: "100.57".
  34. scalar Money
  35. # A string containing HTML code. Refer to the HTML spec for a complete list of HTML elements.
  36. #
  37. # Example value: "<p>Grey cotton knit sweater.</p>".
  38. scalar HTML
  39. # A JSON object.
  40. #
  41. # Example value:
  42. # { "product": { "id": "gid://shopify/Product/1346443542550", "title": "White T-shirt", "options": [{ "name": "Size", "values": ["M", "L"] }] } }
  43. scalar JSON