wdpr
    Preparing search index...
    • Resolve all @URL parameters and normalize the query

      Combines URL resolution with query normalization in a single call. This is the recommended way to process ListPages queries for HPC.

      Parameters

      • requirement: ListPagesDataRequirement

        The data requirement from AST extraction

      • urlParams: Map<string, string>

        Parsed URL parameters (from parseUrlParams)

      Returns NormalizedListPagesQuery

      Normalized query with all @URL values resolved

      const urlParams = parseUrlParams(window.location.pathname);
      const normalizedQuery = resolveAndNormalizeQuery(requirement, urlParams);
      // Ready for database query building