Sha256: 6f3bb20e0d616e896da0b8900ddcb8ec3dd60fbcd6a61511a927ce669526ba6a

Contents?: true

Size: 575 Bytes

Versions: 60

Compression:

Stored size: 575 Bytes

Contents

# frozen_string_literal: true
require_relative 'orm_mutations_base'

module Graphql
  module Generators
    # TODO: What other options should be supported?
    #
    # @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
    #     rails g graphql:mutation UpdatePostMutation
    class MutationUpdateGenerator < OrmMutationsBase

      desc "Scaffold a Relay Classic ORM update mutation for the given model class"
      source_root File.expand_path('../templates', __FILE__)

      private

      def operation_type
        "update"
      end
    end
  end
end

Version data entries

60 entries across 60 versions & 1 rubygems

Version Path
graphql-2.4.4 lib/generators/graphql/mutation_update_generator.rb
graphql-2.4.3 lib/generators/graphql/mutation_update_generator.rb
graphql-2.4.2 lib/generators/graphql/mutation_update_generator.rb
graphql-2.4.1 lib/generators/graphql/mutation_update_generator.rb
graphql-2.4.0 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.20 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.19 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.18 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.17 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.16 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.15 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.14 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.13 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.12 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.11 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.10 lib/generators/graphql/mutation_update_generator.rb
graphql-2.2.16 lib/generators/graphql/mutation_update_generator.rb
graphql-2.1.13 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.9 lib/generators/graphql/mutation_update_generator.rb
graphql-2.3.8 lib/generators/graphql/mutation_update_generator.rb