Type alias PropertiesClause

PropertiesClause: {
    [property: string]: OperatorClause | string | number | boolean | RegExp | null | undefined | object;
}

Properties clause.

Type declaration

  • [property: string]: OperatorClause | string | number | boolean | RegExp | null | undefined | object

Example

{
name: {inq: ['John', 'Mary']},
status: 'ACTIVE',
age: {gte: 40}
}

Generated using TypeDoc