food-graphql-server/schema.gql

17 lines
337 B
Plaintext
Raw Normal View History

2021-02-01 13:36:26 +00:00
# -----------------------------------------------
# !!! 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!
}