The search
plugin provided a set of form to lookup node inside the datastore. The plugin is used to by the api
plugin to filter results.
```toml
[search]
max_result = 128
max_result
set the limit of returned results in one query.
page
: current pageper_page
: number of result per pageorder_by
: field to orderuuid
: array of uuidtype
: array of typename
: name to filterslug
: slug to filterdata.key
: array of valuemeta.key
: array of valuestatus
: array of statusweight
: array of weightrevision
: revision numberenabled
: boolean (f/0/false or t/1/true)deleted
: boolean (f/0/false or t/1/true)current
: boolean (f/0/false or t/1/true)updated_by
: array of uuidcreated_by
: array of uuidparent_uuid
: array of uuidset_uuid
: array of uuidsource
: array of uuid
This type can be used to configure an entry point with a pre-filtered index. As an example:
```yaml
type: search.index
name: Blog archives
data:
type: core.post
The data field accept all search filters.