Skip to content
API/QueryValue

QueryValue

src/types/query-value.type.tstype

A value that can appear in a query-string payload handed to stringify().

Recursive by design: request strategies build arbitrarily nested operator objects such as { filters: { status: { $in: ['draft', 'live'] } } }.

type QueryValue = boolean | number | string | QueryValue[] | null | undefined | object