Is it possible to query a list of projects?
Something like
query {
project(fullPath: [“project1”, “project2”]) {
Searched this myself today, here’s how to get projects for a specific group:
{
group(fullPath:"slipmatio") {
projects {
edges {
node {
id
name
}
}
}
}
}