Files
relspecgo/tests/assets/graphql/enums.graphql
2025-12-28 11:41:55 +02:00

14 lines
122 B
GraphQL

# GraphQL schema with enums
enum Role {
ADMIN
USER
GUEST
}
type User {
id: ID!
email: String!
role: Role!
}