Class: Ecoportal::API::GraphQL::Mutation::Page::ExecuteWorkflowCommands

Inherits:
Logic::Mutation
  • Object
show all
Defined in:
lib/ecoportal/api/graphql/mutation/page/execute_workflow_commands.rb

Constant Summary collapse

SCHEMA_VERSION =
'20260605'.freeze

Instance Method Summary collapse

Methods inherited from Logic::Mutation

#response_class

Instance Method Details

#query(id:, patch_ver:, commands:, **kargs, &block) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/ecoportal/api/graphql/mutation/page/execute_workflow_commands.rb', line 13

def query(id:, patch_ver:, commands:, **kargs, &block)
  super(
    input: { id: id, patchVer: patch_ver, commands: commands },
    **kargs,
    &block
  )
end