Type alias FindOptions

FindOptions: {
    filter?: CompositeCondition;
    limit?: number;
    queryOperator?: QueryOperator;
    scanForward?: boolean;
}

The options for a [[find]] operation

Type declaration

  • Optional filter?: CompositeCondition

    An optional filter expression for the find operation

  • Optional limit?: number
  • Optional queryOperator?: QueryOperator

    The sort key condition to use

  • Optional scanForward?: boolean

    true (default) to scan the index forward, false to scan it backward

Generated using TypeDoc