A little-known feature of GitLab-flavoured Markdown is GLQL (GitLab Query Language).
It basically allows you to create neat dynamic lists for work items.

For instance, the above table is created like so:
```glql
display: table
fields: title, project, state, created
title: "Current assignments"
limit: 10
sort: created desc
query: assignee = "jae" and state = opened and group = "general-stuff"
```YAMLIt will basically display as a table all work items in the “general stuff” group assigned to my user.
Within the query, you can also have more complex asks, for instance labels("workflow::*") AS "Workflow" will query all scoped labels workflow and display their values in a column named “Workflows”.
And that’s about it really, just a small feature to spice up your profile. If you need more information, you can always take a peek at the official docs.
Leave a Reply