Decodes a key string into a probe.
Parses a key string into its structural Probe components, distinguishing projection keys from constraint keys based on the presence of an Operator prefix.
The query key string to decode
The parsed deeply immutable probe
Error If key is malformed or unparseable
key
decodeProbe(">=year:releaseDate");// → { target: ">=", pipe: ["year"], path: ["releaseDate"] } Copy
decodeProbe(">=year:releaseDate");// → { target: ">=", pipe: ["year"], path: ["releaseDate"] }
encodeProbe
Decodes a key string into a probe.
Parses a key string into its structural Probe components, distinguishing projection keys from constraint keys based on the presence of an Operator prefix.