tryzealot/zealot

View on GitHub
app/graphql/types/mutation_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Types
  class MutationType < Types::BaseObject
    # field :test_field, String, null: false,
    #       description: 'An example field added by the generator'

    # def test_field
    #   'Hello World'
    # end
  end
end