Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/query_type.rb')
-rw-r--r--app/graphql/types/query_type.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/graphql/types/query_type.rb b/app/graphql/types/query_type.rb
index 0e39ff2c030..47a049fe10c 100644
--- a/app/graphql/types/query_type.rb
+++ b/app/graphql/types/query_type.rb
@@ -86,7 +86,8 @@ module Types
field :jobs,
::Types::Ci::JobType.connection_type,
null: true,
- description: 'All jobs on this GitLab instance.',
+ description: 'All jobs on this GitLab instance.' \
+ ' Returns an empty result for users without administrator access.',
resolver: ::Resolvers::Ci::AllJobsResolver
field :merge_request, Types::MergeRequestType,
null: true,
@@ -122,6 +123,11 @@ module Types
resolver: Resolvers::Organizations::OrganizationResolver,
description: "Find an organization.",
alpha: { milestone: '16.4' }
+ field :organizations, Types::Organizations::OrganizationType.connection_type,
+ null: true,
+ resolver: Resolvers::Organizations::OrganizationsResolver,
+ description: "List organizations.",
+ alpha: { milestone: '16.8' }
field :package,
description: 'Find a package. This field can only be resolved for one query in any single request. Returns `null` if a package has no `default` status.',
resolver: Resolvers::PackageDetailsResolver