quetch / QuerySettings
QuerySettings<
T
>:object
Settings to use when doing a query.
• T
optional
abortController:AbortController
Abort controller to abort the query.
optional
pathField:FieldFiltered
<T
,string
>
Path to the field that contains the path value of an item, used for displaying items in a tree.
optional
pathFieldSeparator:string
Maps path fields to a string used to separate the path nodes of a field value.
"/"
optional
pathFieldSeparatorEscape:string
String used to escape the separator.
"\\"
optional
signal:AbortSignal
Abort signal to abort the query.
optional
transformFilterChildren: (filter
) =>Exclude
<Filter
<T
>,object
>
Returns a filter that captures the items expressed by the provided FilterChildren
. The return filter cannot use filters of type FilterChildren
.
The provided FilterChildren
to express.
Exclude
<Filter
<T
>, object
>
A filter that captures the items expressed by the provided FilterChildren
.