I have found this issue on github, does that mean ...
# sql
y
I have found this issue on github, does that mean I can't do it? What other options do I have? https://github.com/supabase/postgrest-js/issues/197
s
Can you try this?
Copy code
js
const { data, error } = await supabase
  .from('sheets')
  .select(`
    *,
    projects (
      name
    )
  `)
  .match({ name: 'sheet_name' })
y
This ends up filtering by the name field that belongs to "sheets", from what I have been able to see in the comments of the issues, the only way to achieve this at the moment is with the filter on the client side..