Sha256: 444a6936f60e0243d5776547aa7be76fcbdb61b87fcc87dd95b6c94356d463b1

Contents?: true

Size: 685 Bytes

Versions: 15

Compression:

Stored size: 685 Bytes

Contents

module Ecoportal
  module API
    class GraphQL
      module Builder
        class LocationStructure
          attr_reader :client

          def initialize(client)
            @client = client
          end

          def applyCommandsInput
            Ecoportal::API::GraphQL::Input::LocationStructure::ApplyCommands.new
          end

          def applyCommands(**kargs, &block)
            applyCommandsMutation.query(**kargs, &block)
          end

          private

          def applyCommandsMutation
            Ecoportal::API::GraphQL::Mutation::LocationStructure::ApplyCommands.new(client)
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ecoportal-api-graphql-0.3.14 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.13 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.12 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.11 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.10 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.9 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.8 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.7 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.6 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.5 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.3 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.3.1 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.2.3 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.2.2 lib/ecoportal/api/graphql/builder/location_structure.rb
ecoportal-api-graphql-0.2.1 lib/ecoportal/api/graphql/builder/location_structure.rb