Sha256: 1285a91f2bac31b5a3f06eb7ad54aff1af5993a0bfb533900ab1fd018b6607dd

Contents?: true

Size: 1.81 KB

Versions: 4

Compression:

Stored size: 1.81 KB

Contents

module Ecoportal
  module API
    class GraphQL
      module Mutation
        module LocationStructure
          class ApplyCommands < Ecoportal::API::GraphQL::Logic::Mutation
            field_name :applyCommandsToLocationStructure
            class_resolver :payload_class, Ecoportal::API::GraphQL::Payload::LocationStructure::ApplyCommands
            class_resolver :input_class, Ecoportal::API::GraphQL::Input::LocationStructure::ApplyCommands

            private

            def basic_block(&block)
              payload_block = block || default_payload_block
              proc {
                mutation(input: :ApplyCommandsToLocationStructureInput!) {
                  applyCommandsToLocationStructure(input: :input, &payload_block)
                }
              }
            end

            def default_payload_block
              proc {
                clientMutationId
                error {
                  message
                  conflictingIds
                  validationErrors {
                    error
                    message
                  }
                }
                results {
                  ok
                  command {
                    id
                    state
                    __typename
                  }
                  error {
                    conflictingIds
                    message
                    validationErrors {
                      error
                      message
                    }
                  }
                }
                structure {
                  nodes(includeArchived: true) {
                    ___Ecoportal__API__GraphQL__Fragment__LocationNode
                  }
                }
              }
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ecoportal-api-graphql-0.4.3 lib/ecoportal/api/graphql/mutation/location_structure/apply_commands.rb
ecoportal-api-graphql-0.4.2 lib/ecoportal/api/graphql/mutation/location_structure/apply_commands.rb
ecoportal-api-graphql-0.4.1 lib/ecoportal/api/graphql/mutation/location_structure/apply_commands.rb
ecoportal-api-graphql-0.4.0 lib/ecoportal/api/graphql/mutation/location_structure/apply_commands.rb