Skip to content
代码片段 群组 项目
未验证 提交 de2f155b 编辑于 作者: Rahul Chanila's avatar Rahul Chanila 提交者: GitLab
浏览文件

Removes unnecessary project fragment for project level packages query

The project fragment is required only for group level packages query
上级 f64f2293
No related branches found
No related tags found
无相关合并请求
......@@ -24,12 +24,6 @@ fragment PackageData on Package {
}
}
}
project {
id
name
fullPath
webUrl
}
packageProtectionRuleExists
_links {
webPath
......
......@@ -54,6 +54,11 @@ query getPackages(
count
nodes {
...PackageData
project {
id
name
webUrl
}
}
pageInfo {
...PageInfo
......
......@@ -93,7 +93,6 @@ export const dependencyLinks = () => [
export const packageProject = () => ({
id: '1',
name: 'gitlab-test',
fullPath: 'gitlab-org/gitlab-test',
webUrl: 'http://gdk.test:3000/gitlab-org/gitlab-test',
__typename: 'Project',
});
......@@ -433,7 +432,7 @@ export const packagesListQuery = ({
...packageData(),
packageProtectionRuleExists: false,
...linksData,
project: packageProject(),
...(type === 'group' && { project: packageProject() }),
tags: { nodes: packageTags() },
pipelines: {
nodes: packagePipelines(),
......@@ -442,7 +441,7 @@ export const packagesListQuery = ({
{
...packageData(),
packageProtectionRuleExists: false,
project: packageProject(),
...(type === 'group' && { project: packageProject() }),
tags: { nodes: [] },
pipelines: { nodes: [] },
...linksData,
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册