Sha256: dfd5930fcdc7f67c9ee3ffbbc93304e82a3bf38dee1bb197c51bad9dd98daf48
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
module Ecoportal module API class GraphQL module Model class Organization < Ecoportal::API::GraphQL::Base::Organization DEFAULT_PATH = ["currentOrganization"] class << self extend Ecoportal::API::Common::GraphQL::QueryIntegration def path(*add) DEFAULT_PATH.dup.push(*add) end query :tagTree, query_klass: "Ecoportal::API::GraphQL::Query::TagTree" query :tagTrees, query_klass: "Ecoportal::API::GraphQL::Query::TagTrees" query :contractorEntities, query_klass: "Ecoportal::API::GraphQL::Query::ContractorEntities" #contractorEntity, query :actions, query_klass: "Ecoportal::API::GraphQL::Query::Actions" #action, actionsByPage, actionsCounter #actionCategories #userGroup, userGroups #register, registers #personMembers, attachablePersonMembers end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems