Class: Ecoportal::API::GraphQL::Mutation::Kickstand::BulkUpdateWorkflows

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

Constant Summary collapse

SCHEMA_VERSION =
'20260605'.freeze

Instance Method Summary collapse

Methods inherited from Logic::Mutation

#response_class

Instance Method Details

#query(ids:, start: false, stop: false, failure: false, **kargs, &block) ⇒ Object



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

def query(ids:, start: false, stop: false, failure: false, **kargs, &block)
  super(
    input: { ids: ids, start: start, stop: stop, failure: failure },
    **kargs,
    &block
  )
end