Commit 8263433e authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '331401-fix-pipeline-filtering' into 'master'

Fix pipeline findings query

See merge request gitlab-org/gitlab!68446
parents adb627b6 bc1ce66b
...@@ -13,6 +13,7 @@ query pipelineFindings( ...@@ -13,6 +13,7 @@ query pipelineFindings(
) { ) {
project(fullPath: $fullPath) { project(fullPath: $fullPath) {
pipeline(iid: $pipelineId) { pipeline(iid: $pipelineId) {
id
securityReportFindings( securityReportFindings(
after: $after after: $after
first: $first first: $first
......
...@@ -248,6 +248,7 @@ export const mockPipelineFindingsResponse = ({ hasNextPage } = {}) => ({ ...@@ -248,6 +248,7 @@ export const mockPipelineFindingsResponse = ({ hasNextPage } = {}) => ({
data: { data: {
project: { project: {
pipeline: { pipeline: {
id: 'gid://gitlab/Ci::Pipeline/59',
securityReportFindings: { securityReportFindings: {
nodes: [ nodes: [
{ {
......
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