Skip to content
代码片段 群组 项目
未验证 提交 94fc14b3 编辑于 作者: Heinrich Lee Yu's avatar Heinrich Lee Yu 提交者: GitLab
浏览文件

Merge branch 'dc/group-list-performance' into 'master'

Parameter to prevent searching project level work items

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/166781



Merged-by: default avatarHeinrich Lee Yu <heinrich@gitlab.com>
Approved-by: default avatarMario Celi <mcelicalderon@gitlab.com>
Approved-by: default avatarAlexandru Croitor <acroitor@gitlab.com>
Approved-by: default avatarOmar Qunsul <oqunsul@gitlab.com>
Approved-by: default avatarHeinrich Lee Yu <heinrich@gitlab.com>
Reviewed-by: default avatarMario Celi <mcelicalderon@gitlab.com>
Co-authored-by: default avatarDonald Cook <dcook@gitlab.com>
No related branches found
No related tags found
无相关合并请求
......@@ -118,7 +118,7 @@ def root_ancestor_group
end
def project_namespaces
return unless include_descendants?
return if !include_descendants? || exclude_projects?
projects = Project.in_namespace(params.group.self_and_descendant_ids)
projects = projects.id_in(params[:projects]) if params[:projects]
......@@ -142,6 +142,11 @@ def include_ancestors?
params.fetch(:include_ancestors, false)
end
strong_memoize_attr :include_ancestors?
def exclude_projects?
params.fetch(:exclude_projects, false)
end
strong_memoize_attr :exclude_projects?
end
end
......
......@@ -14,6 +14,12 @@ class WorkItemsResolver < ::Resolvers::WorkItemsResolver
default_value: false,
description: 'Include work items from descendant groups and projects.'
argument :exclude_projects, GraphQL::Types::Boolean,
required: false,
default_value: false,
description: 'Exclude work items from projects within the group.',
alpha: { milestone: '17.5' }
def ready?(**args)
super && resource_parent.namespace_work_items_enabled?
end
......
......@@ -24594,6 +24594,7 @@ Returns [`WorkItemStateCountsType`](#workitemstatecountstype).
| <a id="groupworkitemstatecountsassigneewildcardid"></a>`assigneeWildcardId` | [`AssigneeWildcardId`](#assigneewildcardid) | Filter by assignee wildcard. Incompatible with `assigneeUsernames`. |
| <a id="groupworkitemstatecountsauthorusername"></a>`authorUsername` | [`String`](#string) | Filter work items by author username. |
| <a id="groupworkitemstatecountsconfidential"></a>`confidential` | [`Boolean`](#boolean) | Filter for confidential work items. If `false`, excludes confidential work items. If `true`, returns only confidential work items. |
| <a id="groupworkitemstatecountsexcludeprojects"></a>`excludeProjects` **{warning-solid}** | [`Boolean`](#boolean) | **Introduced** in GitLab 17.5. **Status**: Experiment. Exclude work items from projects within the group. |
| <a id="groupworkitemstatecountsiid"></a>`iid` | [`String`](#string) | IID of the work item. For example, "1". |
| <a id="groupworkitemstatecountsiids"></a>`iids` | [`[String!]`](#string) | List of IIDs of work items. For example, `["1", "2"]`. |
| <a id="groupworkitemstatecountsin"></a>`in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. |
......@@ -24650,6 +24651,7 @@ four standard [pagination arguments](#pagination-arguments):
| <a id="groupworkitemsassigneewildcardid"></a>`assigneeWildcardId` | [`AssigneeWildcardId`](#assigneewildcardid) | Filter by assignee wildcard. Incompatible with `assigneeUsernames`. |
| <a id="groupworkitemsauthorusername"></a>`authorUsername` | [`String`](#string) | Filter work items by author username. |
| <a id="groupworkitemsconfidential"></a>`confidential` | [`Boolean`](#boolean) | Filter for confidential work items. If `false`, excludes confidential work items. If `true`, returns only confidential work items. |
| <a id="groupworkitemsexcludeprojects"></a>`excludeProjects` **{warning-solid}** | [`Boolean`](#boolean) | **Introduced** in GitLab 17.5. **Status**: Experiment. Exclude work items from projects within the group. |
| <a id="groupworkitemsiid"></a>`iid` | [`String`](#string) | IID of the work item. For example, "1". |
| <a id="groupworkitemsiids"></a>`iids` | [`[String!]`](#string) | List of IIDs of work items. For example, `["1", "2"]`. |
| <a id="groupworkitemsin"></a>`in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. |
......@@ -118,6 +118,16 @@
)
end
end
context 'when exclude_projects is true' do
before do
params[:exclude_projects] = true
end
it 'does not include work items from projects' do
expect(items).to contain_exactly(group_work_item, subgroup_work_item)
end
end
end
context 'when include_ancestors is true' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册