Skip to content

Instantly share code, notes, and snippets.

@ShopifyEng
Created August 5, 2021 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShopifyEng/94ccfd46a235e0d08824219a9bcb7422 to your computer and use it in GitHub Desktop.
Save ShopifyEng/94ccfd46a235e0d08824219a9bcb7422 to your computer and use it in GitHub Desktop.
Understanding GraphQL for Beginners–Part Three
module Mutations
class NutritionDelete < BaseMutation
argument :id, ID, required: true
type Types::NutritionType
def resolve(id:)
nutrition = Nutrition.find(id)
nutrition.destroy!
return nutrition
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment