Scalars
BigInt#
Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.
BillingFeatureValueType#
No description
Boolean#
The Boolean scalar type represents true or false.
DateTime#
Represents an ISO 8601-encoded datetime.
Email#
Represents a valid email string. For example:
"John Doe john.doe@example.com"
EmailAddress#
Represents a valid email address transported as a string. For example:
Float#
The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.
ID#
however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.
Int#
The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
ISO8601DateTime#
An ISO 8601-encoded datetime
JSON#
Represents untyped JSON
String#
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.
Untyped#
Represents any value.
Url#
Represents a valid URL transported as a string.