Skip to content

Type Alias: ValuePatternDto

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Row / ValuePatternDto

Type Alias: ValuePatternDto

ValuePatternDto = { type: "any"; } | { featureType: FeatureTypeDto; type: "of_type"; } | { type: "exact"; value: unknown; } | { type: "greater_than"; value: unknown; } | { type: "less_than"; value: unknown; } | { substring: string; type: "contains"; } | { pattern: string; type: "regex"; } | { type: "bind"; variable: string; }

Defined in: src/types/row.ts:20

Value pattern for matching in row queries.

Remarks

Tagged union discriminated by type.