# ------------------------------------------------------ # THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) # ------------------------------------------------------ directive @upper on FIELD_DEFINITION """recipe """ type Recipe { id: ID! description: String creationDate: Date! ingredients: [String!]! title: String! } """Date custom scalar type""" scalar Date type Query { recipe(id: String!): Recipe! recipes(skip: Int = 0, take: Int = 25): [Recipe!]! } type Mutation { addRecipe(newRecipeData: NewRecipeInput!): Recipe! removeRecipe(id: String!): Boolean! } input NewRecipeInput { title: String! description: String ingredients: [String!]! } type Subscription { recipeAdded: Recipe! }