Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Click on the “Edit menu structure “ icon to open the menu structure

Bildschirmfoto 2024-04-25 um 16.31.07.png

Bildschirmfoto 2024-04-25 um 16.30.45.png

Add CQL search

To add a CQL search, activate CQL in the Toogle in the table column.

Click in the link field. Add a valid field, operator and value to dynamically generate menu items based on the query’s result.

For more information on QCL, check the Atlassian documentation.

Check your query results

Use the preview to test the query and view the results.

If you are unsure, what the CQL feature can do for you, here are a few suggestions what it can be used for:

Usecase

Query

Pages or Blogpost created by the current user in descending order

contributor = currentUser() AND type IN (‘page’, ‘blogpost’) order by created desc

Content that has been starred by the current user. This will show starred pages and spaces.

favourite = currentUser()

Content that is watched by the current user

watcher = currentUser()

Content that mentions the current user

mention = currentUser()

Find child pages of a parent page. In this example the query will show child pages of a parent page with the ID 123.

parent = 123

Find content created since the end of yesterday.

created > endOfDay("-1d")

Find content motified modified since the end of yesterday.

lastmotified lastmodified > endOfDay("-1d")

Content that the current user is watching and that has been added since the end of yesterday

watcher = currentUser() AND created > endOfDay("-1d") AND type IN (‘page’, ‘blogpost’) order by created desc