IngredientListItem
Ingredient item
type IngredientListItem {
id: String!
quantity: Float!
unit: Unit!
customUnitSingular: String
customUnitPlural: String
ingredient: String!
createdAt: DateTimeISO!
updatedAt: DateTimeISO!
deletedAt: DateTimeISO
recipeDetailsId: String
recipeDetails: RecipeDetails!
}
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
● DateTimeISO!
non-null scalar
Creation time given as the ISO Date string
IngredientListItem.updatedAt
● DateTimeISO!
non-null scalar
Last update time given as the ISO Date string
IngredientListItem.deletedAt
● DateTimeISO
scalar
Soft delete time given as the ISO Date string
IngredientListItem.recipeDetailsId
● String
scalar
Id of recipe details of ingredient list item
IngredientListItem.recipeDetails
● RecipeDetails!
non-null object
Recipe details of ingredient list item
Member Of
RecipeDetails
object