Commit 33e0ff37 authored by Nicolò Maria Mezzopera's avatar Nicolò Maria Mezzopera

Merge branch 'aalakkad/add-pipeline-artifacts-size-to-project-storage-query' into 'master'

Add pipelineArtifactsSize to project storage query

See merge request gitlab-org/gitlab!70047
parents c089f4ec 3413936d
...@@ -3,6 +3,7 @@ query getProjectStorageCount($fullPath: ID!) { ...@@ -3,6 +3,7 @@ query getProjectStorageCount($fullPath: ID!) {
id id
statistics { statistics {
buildArtifactsSize buildArtifactsSize
pipelineArtifactsSize
lfsObjectsSize lfsObjectsSize
packagesSize packagesSize
repositorySize repositorySize
......
...@@ -4,6 +4,7 @@ export const mockGetProjectStorageCountGraphQLResponse = { ...@@ -4,6 +4,7 @@ export const mockGetProjectStorageCountGraphQLResponse = {
id: 'gid://gitlab/Project/20', id: 'gid://gitlab/Project/20',
statistics: { statistics: {
buildArtifactsSize: 400000.0, buildArtifactsSize: 400000.0,
pipelineArtifactsSize: 25000.0,
lfsObjectsSize: 4800000.0, lfsObjectsSize: 4800000.0,
packagesSize: 3800000.0, packagesSize: 3800000.0,
repositorySize: 3900000.0, repositorySize: 3900000.0,
......
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