Own Recipes
Retrieve the list of own recipes
Please refer to the User's recipe documentation for a new and improved way for searching your own recipes for food logging or other purposes.
Available Fields
The following fields are displayed in the response:
Field
Type
Description
id
ID
Id of the own recipe
name
String
Name of the recipe
quantity
Int
Quantity of the recipe
{
ownRecipes {
edges {
node {
id
databaseId
name
quantity
nutritionalInfo {
calories
fat
protein
carbs
}
ingredients {
id
quantity
serving
}
}
}
}
}{
"data": {
"ownRecipes": {
"edges": [
{
"node": {
"id": "TWVhbExvZzo1YzlkMDMwYS02YTQ3LTExZWItODRjZi00NmU4MjRjMWRjOWM=",
"databaseId": "5c9d030a-6a47-11eb-84cf-46e824c1dc9c",
"name": "My daily snack",
"quantity": 2,
"nutritionalInfo": {
"calories": 1.43,
"fat": 0.1,
"protein": 0.13,
"carbs": 0.01
},
"ingredients": [
{
"id": "01123",
"quantity": 1,
"serving": 0
}
]
}
}
]
}
}
}Last updated
Was this helpful?