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

10 lines
142 B
GraphQL

# Simple GraphQL schema for testing basic type parsing
type User {
id: ID!
email: String!
name: String
age: Int
active: Boolean!
}