Query String
Portion of a URL containing key-value parameters, following a ?
. Craft uses query strings to add context to URLs (like ?draftId=1
on an element edit screen), and provides access to them from templates (via craft.app.request.getQueryParam('searchKeywords')
), allowing front end pages to react to additional parameters, like faceted search.