Scalars

Boolean#

The Boolean scalar type represents true or false.

scalar Boolean

DateTime#

Represents an ISO 8601-encoded datetime.

scalar DateTime

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

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