Sha256: db19e75a7d4ac3217552f1c922eedb9d9cbe87149becfc183b555af7ec6bc33a

Contents?: true

Size: 575 Bytes

Versions: 44

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 CreatePostMutation
    class MutationDeleteGenerator < OrmMutationsBase

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

      private

      def operation_type
        "delete"
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
graphql-2.0.14 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.16 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.13 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.12 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.15 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.11 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.14 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.13 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.9 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.8 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.7 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.12 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.6 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.5 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.4 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.3 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.11 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.2 lib/generators/graphql/mutation_delete_generator.rb
graphql-2.0.1 lib/generators/graphql/mutation_delete_generator.rb
graphql-1.13.10 lib/generators/graphql/mutation_delete_generator.rb