feat(query): improve sparse pagination support with getPage and fetchMore methods4 weeks ago8aad9d3
docs: limit fps on docs 3D animationslast month81fbd21
fix(nuxt-drizzle): close websocket connections on nitro closelast month870d6de
fix(nuxt-drizzle): coerce array/object fields to JSON before LIKE matching
JSON-mode columns (`text({ mode: 'json' })`) are stored as encoded text in SQL but
parsed back to arrays/objects in the cache. The default `Array.toString()`
coercion (`["Judge"]` → `Judge`) drops the quotes the LIKE pattern (`%"Judge"%`)
was authored against, so the cache filter wrongly excluded every row matching
the LIKE — even after the server fetch returned matches.
Coerce array/object field values via `JSON.stringify` before the LIKE/ILIKE
regex runs, keeping cache and server filters consistent.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>2 months agoc1165e6