Files
nest/sample/23-graphql-code-first/schema.gql
2025-01-17 11:10:58 +01:00

37 lines
726 B
GraphQL

# ------------------------------------------------------
# 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!
}