Type Alias: QueryOptions
QueryOptions: {
disabledConditions:"all"| readonlystring[]; }
Settings that affect the behaviour of individual queries, such as disabling default entity query conditions. Used in conjunction with the RootQueryOperations.options query operator.
Type declaration
disabledConditions?
optionaldisabledConditions:"all"| readonlystring[]
Disables entity query conditions for the query.
Example
// Disable the default "soft delete" condition for the query.
const q =
db.from.products.options({ disabledConditions: ["soft delete"] });