Commit bc1ce66b authored by Savas Vedova's avatar Savas Vedova

Fix pipeline findings query

parent 2597de6c
...@@ -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