module Ecoportal module API class GraphQL module Model class Organization < Ecoportal::API::GraphQL::Base::Organization class << self #userGroup, userGroups, #tagTree, tagTrees, #register, registers #personMembers, attachablePersonMembers #contractorEntity, # @return [Connection::ContractorEntity, Query::ContractorEntities] def contractorEntities(**kargs, &block) if kargs.empty? contractorEntitiesQuery else contractorEntitiesQuery.query(**kargs, &block) end end def contractorEntitiesQuery Ecoportal::API::GraphQL::Query::ContractorEntities.new(client) end # @return [Connection::Action, Query::Actions] def actions(**kargs, &block) if kargs.empty? actionsQuery else actionsQuery.query(**kargs, &block) end end def actionsQuery Ecoportal::API::GraphQL::Query::Actions.new(client) end #actionCategories #action, actionsByPage, actionsCounter end end end end end end