Enums are natively supported as described the GraphQL schema specarrow-up-right. Here is an illustrative example:
enum { NONE REJECTED APPROVED } type Proposal @entity { status: ProposalStatus bond: BigInt! }
Last updated 5 years ago