Skip to content

Instantly share code, notes, and snippets.

@hash32bot
Last active December 25, 2018 15:06
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 hash32bot/1b9818e4a18a80f34c7aa139a3d14545 to your computer and use it in GitHub Desktop.
Save hash32bot/1b9818e4a18a80f34c7aa139a3d14545 to your computer and use it in GitHub Desktop.
Add CreateSpeaker to MutationType - [Post] GraphQL with Sinatra (Ruby) - Part 2- Mutations
require 'graphql'
require_relative 'mutations/create_speaker'
class MutationType < GraphQL::Schema::Object
description "The mutation root of this schema"
field :createSpeaker, mutation: Mutations::CreateSpeaker
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment