Resolve all @URL parameters and normalize the query
@URL
Combines URL resolution with query normalization in a single call. This is the recommended way to process ListPages queries for HPC.
The data requirement from AST extraction
Parsed URL parameters (from parseUrlParams)
Normalized query with all @URL values resolved
const urlParams = parseUrlParams(window.location.pathname);const normalizedQuery = resolveAndNormalizeQuery(requirement, urlParams);// Ready for database query building Copy
const urlParams = parseUrlParams(window.location.pathname);const normalizedQuery = resolveAndNormalizeQuery(requirement, urlParams);// Ready for database query building
Resolve all
@URLparameters and normalize the queryCombines URL resolution with query normalization in a single call. This is the recommended way to process ListPages queries for HPC.