Ember Query Params

Michael Jan Schiumo
4 min readJan 5, 2022

Introduction

In an effort to help your users move seamlessly across your application, query parameters are a developer’s best friend. In short, query params are optional, key-value pairs that are appended to a URL and preceded by a (?) question mark. Query params are commonly used in cases of pagination, sorting, or filtering, and allow us to serialize our state into the URL.

--

--