GitLab Data Stream Parameters
The GitLab plugin provides a flexible GQL data stream that allows you to fetch and explore GitLab data using GraphQL queries. By executing custom queries, you can retrieve projects, groups, issues, pipelines, and other entities in a single request.
Optional row path filtering lets you focus on specific parts of the query response, making it easy to extract and visualize exactly the data you need.
GQL Query
Example
This example query shows you how to get the details about the current user, the groups it has access to and the project IDs in those groups.
query{
currentUser{
groups{
nodes
{
projects {
edges {
node {
id
name
}
}
}
fullName
id
}
}
name
id
}
}