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

Parameter
Description
GQL query
Enter a valid GitLab GraphQL query to define the data you want to fetch (e.g. query { projects { nodes { id name webUrl } } }).
RowPath
Optionally, specify the path within the query response to focus on a particular array of results (e.g. projects.nodes to display only project-level data).

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
  }
}

Was this article helpful?


Have more questions or facing an issue?