You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET /collections search free text extension (#470)
**Related Issue(s):**
- #460
**Description:**
ex. `/collections?q=Sentinel-2a`
**PR Checklist:**
- [x] Code is formatted and linted (run `pre-commit run --all-files`)
- [x] Tests pass (run `make test`)
- [x] Documentation has been updated to reflect changes, if applicable
- [x] Changes are added to the changelog
- This helps reduce payload size when only certain fields are needed
128
128
129
+
-**Free Text Search**: Search across collection text fields using the `q` parameter
130
+
- Example: `/collections?q=landsat`
131
+
- Searches across multiple text fields including title, description, and keywords
132
+
- Supports partial word matching and relevance-based sorting
133
+
129
134
These extensions make it easier to build user interfaces that display and navigate through collections efficiently.
130
135
131
136
> **Configuration**: Collection search extensions can be disabled by setting the `ENABLE_COLLECTIONS_SEARCH` environment variable to `false`. By default, these extensions are enabled.
0 commit comments