@tikoci/centrs
    Preparing search index...

    Interface TargetSelection

    The parsed target selection a command hands to expandCdbSelection.

    interface TargetSelection {
        all: boolean;
        bbox?: BboxPredicate;
        default: boolean;
        groups: readonly string[];
        near?: NearPredicate;
        positionals: readonly string[];
        where: readonly SelectionWhereClause[];
    }
    Index

    Properties

    all: boolean

    --all: every CDB record except __default__.

    --bbox <south>,<west>,<north>,<east>: a geo union predicate (device GPS in box).

    default: boolean

    --default: the reserved __default__ record.

    groups: readonly string[]

    Repeatable --group <name>.

    --near <lat>,<lon>,<radius>: a geo union predicate (device GPS within radius).

    positionals: readonly string[]

    Literal/lookup positionals (NOT operation args — the caller splits those).

    where: readonly SelectionWhereClause[]

    Repeatable --where attr=value, AND-combined.