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