daddy/internal/graph/schema.graphqls

12 lines
147 B
GraphQL
Raw Normal View History

# GraphQL schema example
#
# https://gqlgen.com/getting-started/
type User {
name: String
email: String!
}
type Query {
userProfile: User
}