Interface SemanticSqlParameterExperimental

Ordered bind value for parameterized semantic SQL.

interface SemanticSqlParameter {
    field?: string;
    logicalType?: string;
    position: number;
    role:
        | "literal"
        | "distance"
        | "geometry"
        | "bbox";
    value: JsonPrimitive;
}

Properties

field?: string
logicalType?: string
position: number

One-based position matching the corresponding ? in SQL text.

role:
    | "literal"
    | "distance"
    | "geometry"
    | "bbox"