Versions Compared

Key

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

...

Code Block
type = blogpost AND created > startOfDay("-5d") order by created asc

Execute search only for meeting minutes/requirements/How-to  

The following CQL will only search for Meeting Minutes containing the given search text. Meeting Minutes are pages with Title containing Minutes or labelled with minutes.

Code Block
text ~ $$query$$ AND (label = minutes OR title ~ Minutes )

You can also search all the children and descendants pages under the Requirements section by using the ancestor field.

The id of the id of the root page can be found by clicking on the Page Information link

...

The link of the information page is generated in the url (e.g. it is 255688724 for https://akeles-forge.atlassian.net/wiki/pages/viewinfo.action?pageId=255688724)

Code Block
ancestor = 255688724 AND text ~ $$query$$

Pages within "project" spaces

...