Anyone can tell me whats wrong with this query? `...
# javascript
p
Anyone can tell me whats wrong with this query?
Copy code
let { data: user_presets, error } = await $supabase
    .from('user_presets')
    .select('preset_name, preset, id, visualsas(slug)')
    .filter('visualsas.slug', 'eq', 'pixi')
The output, instead of filtering and returning the one with the blue arrow it's returning all rows...🤯
p
It says that should be fixed in version 2.0. I'm on the previous PostgreSQL version from what I understand. Is it working if I create a new project with the new version? Thanks for answering!