food-graphql-server/schema.gql

17 lines
337 B
GraphQL

# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
type Query {
"""Get all the stores """
stores: [Store!]!
}
type Store {
id: ID!
"""The name of the store"""
name: String!
}