@metreeca/qest - v0.10.0
    Preparing search index...

    Function decodeProbe

    • 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.

      Parameters

      • key: string

        The query key string to decode

      Returns Probe

      The parsed deeply immutable probe

      Error If key is malformed or unparseable

      decodeProbe(">=year:releaseDate");
      // → { target: ">=", pipe: ["year"], path: ["releaseDate"] }