Remove "Own" Recipe

Remove an own recipe

CAUTION: Legacy Endpoint! Please refer to the User's recipe documentation for a new and improved way of creating your own recipe for food logging or other purposes.

Use the removeOwnMeal mutation to delete/remove an "own" Recipe

Required Argument

Argument

Type

Description

databaseId

String!

DatabaseID of the "own" recipe to be removed. Use the ownRecipes to get the databaseId of a recipe

Example

mutation {
  removeOwnMeal(databaseId: "157d3634-6a47-11eb-82d4-baab45724771") {
    success
  }
}

Last updated