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