Sha256: dc718acf7d65244c48c7a257bba02afb51dd7780d60109af04a7b4a1b8d7a378
Contents?: true
Size: 506 Bytes
Versions: 4
Compression:
Stored size: 506 Bytes
Contents
module Ecoportal module API class GraphQL module Builder class Action attr_reader :client def initialize(client) @client = client end def archive(**kargs, &block) archiveMutation.query(**kargs, &block) end private def archiveMutation Ecoportal::API::GraphQL::Mutation::Action::Archive.new(client) end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems