14 lines
762 B
Markdown
14 lines
762 B
Markdown
|
|
```oql
|
|
name: Tasks # The name of query (can be used in the template as {name})
|
|
query: "tag:#projects/crossminer" # The actual query to use with Fuse.js
|
|
template: "table" # or use "table" or "list" for a different output "{name}: {count}"
|
|
badge: true # Show the OQL badge on the right
|
|
debug: false # Show the debug window
|
|
wrapper: "div" # Wrapper (in the case you want to render a title like `h1`)
|
|
limit: 20 # When using list or table view, limit the result to N.
|
|
sort: "title" # or "-title" for descending sort, you can also sort on 'modified' or 'created'
|
|
fields: ['title', 'created', 'tags'] # Fields to show in table view
|
|
```
|
|
|
|
|