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