Commit 16ad1265 authored by Dylan Griffith's avatar Dylan Griffith

Merge branch 'user-groups-field-ff-description' into 'master'

Add feature flag description to groups field on user interface

See merge request gitlab-org/gitlab!69942
parents 04fa33f1 2f0e3083
...@@ -61,7 +61,8 @@ module Types ...@@ -61,7 +61,8 @@ module Types
description: 'Group memberships of the user.' description: 'Group memberships of the user.'
field :groups, field :groups,
resolver: Resolvers::Users::GroupsResolver, resolver: Resolvers::Users::GroupsResolver,
description: 'Groups where the user has access.' description: 'Groups where the user has access. Will always return `null` if ' \
'`paginatable_namespace_drop_down_for_project_creation` feature flag is disabled.'
field :group_count, field :group_count,
resolver: Resolvers::Users::GroupCountResolver, resolver: Resolvers::Users::GroupCountResolver,
description: 'Group count for the user.' description: 'Group count for the user.'
......
...@@ -11105,7 +11105,7 @@ four standard [pagination arguments](#connection-pagination-arguments): ...@@ -11105,7 +11105,7 @@ four standard [pagination arguments](#connection-pagination-arguments):
##### `MergeRequestAssignee.groups` ##### `MergeRequestAssignee.groups`
Groups where the user has access. Groups where the user has access. Will always return `null` if `paginatable_namespace_drop_down_for_project_creation` feature flag is disabled.
Returns [`GroupConnection`](#groupconnection). Returns [`GroupConnection`](#groupconnection).
...@@ -11351,7 +11351,7 @@ four standard [pagination arguments](#connection-pagination-arguments): ...@@ -11351,7 +11351,7 @@ four standard [pagination arguments](#connection-pagination-arguments):
##### `MergeRequestReviewer.groups` ##### `MergeRequestReviewer.groups`
Groups where the user has access. Groups where the user has access. Will always return `null` if `paginatable_namespace_drop_down_for_project_creation` feature flag is disabled.
Returns [`GroupConnection`](#groupconnection). Returns [`GroupConnection`](#groupconnection).
...@@ -14260,7 +14260,7 @@ four standard [pagination arguments](#connection-pagination-arguments): ...@@ -14260,7 +14260,7 @@ four standard [pagination arguments](#connection-pagination-arguments):
##### `UserCore.groups` ##### `UserCore.groups`
Groups where the user has access. Groups where the user has access. Will always return `null` if `paginatable_namespace_drop_down_for_project_creation` feature flag is disabled.
Returns [`GroupConnection`](#groupconnection). Returns [`GroupConnection`](#groupconnection).
...@@ -17255,7 +17255,7 @@ four standard [pagination arguments](#connection-pagination-arguments): ...@@ -17255,7 +17255,7 @@ four standard [pagination arguments](#connection-pagination-arguments):
###### `User.groups` ###### `User.groups`
Groups where the user has access. Groups where the user has access. Will always return `null` if `paginatable_namespace_drop_down_for_project_creation` feature flag is disabled.
Returns [`GroupConnection`](#groupconnection). Returns [`GroupConnection`](#groupconnection).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment