RecipeParent
No description
type RecipeParent {
id: String!
universalTitle: String!
tags: [RecipeTag!]!
approximateTime: Int!
calories: Int!
servings: Int!
category: [Category!]!
createdAt: DateTime!
updatedAt: DateTime!
deletedAt: DateTime
photoFileDetails: FileDetails!
recipes: [Recipe!]!
}
Fields
RecipeParent.id
● String!
non-null scalar
UUID of recipe parent
RecipeParent.universalTitle
● String!
non-null scalar
Universal title of recipe parent
RecipeParent.tags
● [RecipeTag!]!
non-null enum
Tags of recipe parent
RecipeParent.approximateTime
● Int!
non-null scalar
Approximate preparation time for recipe parent given in minutes
RecipeParent.calories
● Int!
non-null scalar
Approximate calorie count per serving of prepared food
RecipeParent.servings
● Int!
non-null scalar
Expected servings for recipe parent
RecipeParent.category
● [Category!]!
non-null enum
List of categories recipe parent is included in
RecipeParent.createdAt
● DateTime!
non-null scalar
Creation time given as the ISO Date string
RecipeParent.updatedAt
● DateTime!
non-null scalar
Last update time given as the ISO Date string
RecipeParent.deletedAt
● DateTime
scalar
Soft delete time given as the ISO Date string
RecipeParent.photoFileDetails
● FileDetails!
non-null object
Display photo for recipe parent
RecipeParent.recipes
● [Recipe!]!
non-null object
Recipes of the recipe parent
Returned by
getRecipeParents
query
Member of
Recipe
object
Implemented by
FileDetailsParentUnion
union