Last updated 3 years ago
Was this helpful?
Enums are natively supported as described the GraphQL schema . Here is an illustrative example:
enum ProposalStatus { NONE REJECTED APPROVED } type Proposal @entity { status: ProposalStatus bond: BigInt! }