IngredientListItem
No description
type IngredientListItem {
id: String!
quantity: Float!
unit: Unit!
customUnitSingular: String
customUnitPlural: String
ingredient: String!
createdAt: DateTime!
updatedAt: DateTime!
deletedAt: DateTime
recipeId: String
recipe: Recipe!
}
Fields
IngredientListItem.id
● String!
non-null scalar
UUID of ingredient list item
IngredientListItem.quantity
● Float!
non-null scalar
Quantity of ingredient
IngredientListItem.unit
● Unit!
non-null enum
Unit of quantity
IngredientListItem.customUnitSingular
● String
scalar
Singular of custom unit
IngredientListItem.customUnitPlural
● String
scalar
Plural of custom unit
IngredientListItem.ingredient
● String!
non-null scalar
Ingredient
IngredientListItem.createdAt
● DateTime!
non-null scalar
Creation time given as the ISO Date string
IngredientListItem.updatedAt
● DateTime!
non-null scalar
Last update time given as the ISO Date string
IngredientListItem.deletedAt
● DateTime
scalar
Soft delete time given as the ISO Date string
IngredientListItem.recipeId
● String
scalar
Id of recipe of ingredient list item
IngredientListItem.recipe
● Recipe!
non-null object
Recipe of ingredient list item
Member of
Recipe
object