Type alias FindChildrenOptions

FindChildrenOptions: {
    filter?: CompositeCondition;
    limit?: number;
    range?: KeyRangeExpression;
    scanForward?: boolean;
}

The options to a [[findChildren]] operation

Type declaration

  • Optional filter?: CompositeCondition

    An optional filter expression for the find operation

  • Optional limit?: number
  • Optional range?: KeyRangeExpression

    The range of children to retrieve (on the child's ID value)

  • Optional scanForward?: boolean

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

Generated using TypeDoc