Commit 97084a5d authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch '219433_fix_graphql_query_to_fetch_all_vulnerable_projects' into 'master'

Fix GraphQL query to fetch vulnerable projects of subgroups

See merge request gitlab-org/gitlab!33410
parents 1907d424 bf290b66
...@@ -12,7 +12,7 @@ query group( ...@@ -12,7 +12,7 @@ query group(
$state: [VulnerabilityState!] $state: [VulnerabilityState!]
) { ) {
group(fullPath: $fullPath) { group(fullPath: $fullPath) {
projects(hasVulnerabilities: true) { projects(includeSubgroups: true, hasVulnerabilities: true) {
nodes { nodes {
...Project ...Project
} }
......
---
title: Fix GraphQL query to fetch vulnerable projects of subgroups
merge_request: 33410
author:
type: fixed
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