Sha256: 98cd9d6e4d06f6ecb64399d2565900c7ad2b2e83a780fa4d4563e3f06e3ef00e
Contents?: true
Size: 1.12 KB
Versions: 5
Compression:
Stored size: 1.12 KB
Contents
module Ecoportal module API class GraphQL module Mutation module ContractorEntity class Update < Ecoportal::API::GraphQL::Logic::Mutation field_name :updateContractorEntity class_resolver :payload_class, Ecoportal::API::GraphQL::Payload::ContractorEntity::Update class_resolver :input_class, Ecoportal::API::GraphQL::Input::ContractorEntity::Update private def basic_block(&block) payload_block = block || default_payload_block proc { mutation(input: :UpdateContractorEntityInput!) { updateContractorEntity(input: :input, &payload_block) } } end def default_payload_block proc { clientMutationId errors { details fullMessages } item { ___Fragment__ContractorEntity } } end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems