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(
) {
project(fullPath: $fullPath) {
pipeline(iid: $pipelineId) {
id
securityReportFindings(
after: $after
first: $first
......
......@@ -248,6 +248,7 @@ export const mockPipelineFindingsResponse = ({ hasNextPage } = {}) => ({
data: {
project: {
pipeline: {
id: 'gid://gitlab/Ci::Pipeline/59',
securityReportFindings: {
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