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