| Current Path : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/examples/02-shorthand/ |
| Current File : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/examples/02-shorthand/schema.graphqls |
schema {
query: Query
mutation: Calc
}
type Calc {
sum(x: Int, y: Int): Int
}
type Query {
echo(message: String): String
}