Own Recipe
Retrieve individual own recipe by id
Last updated
Was this helpful?
Retrieve individual own recipe by id
Last updated
Was this helpful?
Was this helpful?
{
ownRecipe(id: "TWVhbExvZzo1YmZkYTgzYy1jMzIwLTExZWItYTU3Mi1iYTg4YzNlMjJkODE=") {
id
databaseId
name
quantity
ingredients {
id
name
}
nutritionalInfo {
calories
protein
fat
carbs
}
}{
"data": {
"ownRecipe": {
"id": "TWVhbExvZzo1YmZkYTgzYy1jMzIwLTExZWItYTU3Mi1iYTg4YzNlMjJkODE=",
"databaseId": "5bfda83c-c320-11eb-a572-ba88c3e22d81",
"name": "My cool bacon eggs",
"quantity": 1,
"ingredients": [
{
"id": "01123",
"name": "Egg, whole, raw, fresh"
},
{
"id": "10123",
"name": "Pork, cured, bacon, unprepared"
}
],
"nutritionalInfo": {
"calories": 5.36,
"protein": 0.26,
"fat": 0.47,
"carbs": 0.01
}
}
}
}