--- key: api.search-field-values title: 2026-07-23 — Facet-value typeahead is a new endpoint, allow-listed to text fields, no caching (#434) status: superseded since: '2026-07-23' supersedes: none superseded-by: api.search-field-values-sources@2026-07-26 rule: '(superseded) `GET /api/v1/search/fields/{name}/values?q=&limit=` returns distinct WHOLE values from the database for one of a narrow allow-list of catalog fields (not the Lucene term dictionary — analyzed `TextField`s store lowercased word tokens, e.g. "Science Fiction" → `science`/`fiction`, useless as a typeahead suggestion), 404 for an unknown field, a non-`text` field, or a `text` field with no distinct-value source; case-insensitive prefix-filtered on `q`, `limit` clamped to `[1, 50]` (default 50).' signals: 'facet-value typeahead, rule builder value combobox, distinct field values, GetSearchFieldValues, text field allow-list, DB-sourced distinct values, content_rating split · paths: `ErsatzTV/Controllers/Api/SearchController.cs`, `ErsatzTV.Application/Search/Queries/GetSearchFieldValues.cs`, `ErsatzTV.Application/Search/Queries/GetSearchFieldValuesHandler.cs`, `web/src/api/search.ts` · issues: #434, #176' mechanics: superseded by `api.search-field-values-sources` (ersatztv#578), which keeps this endpoint contract and reverses the "no distinct-value source" call for the list-valued music fields --- Enum fields (e.g. `type`, `content_rating` group) already ship their allowed values inline on `SearchFieldResponseModel` from the existing `GET /api/v1/search/fields` catalog (`spa.smartcollection-rule-builder`, #176), so they need no endpoint — a client already has the full value set. **Text** fields (title, studio, genre-as-free-text, etc.) don't: their values are whatever strings the library actually contains, so the rule builder's value input for a text field needs a live lookup rather than a fixed list. The handler allow-lists on `field.Type != "text"` (matching the same `SearchFieldCatalog.Fields` the `/fields` endpoint serves) and returns `Option.None` → 404 for anything else, rather than silently returning an empty list for a field that will never have values — a 404 tells a caller "wrong field kind," an empty 200 would look like "no matches yet." **DB-sourced, not the search index.** The handler injects `IDbContextFactory` and resolves an explicit per-field-name `IQueryable` (or, for a few special cases, an in-memory list) rather than querying `ISearchIndex`: `genre`/`show_genre` → `Set()`, `studio` → `Set()`, `director` → `Set()`, `writer` → `Set()`, `actor` → `Actors`, `artist` → `ArtistMetadata.Title` (entity artists only — free-text music-video/song artist credits are a known, intentionally-uncovered gap), `tag` → `Set()` excluding `Tag.NfoCountryTypeId`/`Tag.PlexNetworkTypeId` (reapplying the indexer's own exclusions so country/network strings don't leak in as tags), `network` → `Set()` filtered to `Tag.PlexNetworkTypeId`, `collection` → `Collections`, `video_codec` → `MediaStreams` filtered to `MediaStreamKind.Video`, `album` → `MusicVideoMetadata.Album` concatenated with `SongMetadata.Album`. Every DB-sourced field runs the same pipeline: `.Where(v => v.ToLower().StartsWith(qLower)).Distinct().OrderBy(v => v).Take(limit)`, translated to SQL by EF for both SQLite and MySQL. Two fields are computed in memory instead of queried: `state` (the fixed 4-value `MediaItemState` enum) and `video_dynamic_range` (the literal `["hdr", "sdr"]`). `content_rating` is special-cased: the DB stores an unsplit `"PG-13/TV-14"` string across `MovieMetadata`/`ShowMetadata`/`OtherVideoMetadata`/`RemoteStreamMetadata`, so the handler pulls the distinct raw strings then `Split('/')`s, trims, and dedupes in memory before the same prefix-filter/sort/take — this matches what search actually matches on, rather than surfacing the compound string as one facet value. **`title`, `show_title`, `album_artist` are explicitly NOT supported** (404, free-text fallback): `title`/ `show_title` are near-unique free-text fields spanning ~9 metadata tables where a distinct list of every title isn't a useful facet; `album_artist` backs onto `SongMetadata.AlbumArtists`, a value-converted `IList` column EF can't translate into a server-side distinct query. **Why a thin query, not a cache.** No result cache, no debounce on the server side (the SPA combobox debounces the keystroke) — each per-field query is a bounded, indexed `Distinct`/`Take`; adding a cache before there's a measured cost would be premature.