Scalars
#
BigIntRepresents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string.
#
BillingFeatureValueTypeNo description
#
BooleanThe Boolean
scalar type represents true
or false
.
#
DateTimeRepresents an ISO 8601-encoded datetime.
#
EmailRepresents a valid email string. For example:
"John Doe john.doe@example.com"
#
EmailAddressRepresents a valid email address transported as a string. For example:
#
FloatThe 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.
#
IntThe Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
#
ISO8601DateTimeAn ISO 8601-encoded datetime
#
JSONRepresents untyped JSON
#
StringThe 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.
#
UntypedRepresents any value.
#
UrlRepresents a valid URL transported as a string.