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.

scalar BigInt

BillingFeatureValueType#

No description

scalar BillingFeatureValueType

Boolean#

The Boolean scalar type represents true or false.

scalar Boolean

DateTime#

Represents an ISO 8601-encoded datetime.

scalar DateTime

Email#

Represents a valid email string. For example:

"John Doe john.doe@example.com"

scalar Email

EmailAddress#

Represents a valid email address transported as a string. For example:

"john.doe@example.com"

scalar EmailAddress

Float#

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

scalar Float

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.

scalar ID

Int#

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

scalar Int

ISO8601DateTime#

An ISO 8601-encoded datetime

scalar ISO8601DateTime

JSON#

Represents untyped JSON

scalar 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.

scalar String

Untyped#

Represents any value.

scalar Untyped

Url#

Represents a valid URL transported as a string.

scalar Url