How do I return the values in a row based on the f...
# help
r
How do I return the values in a row based on the field?
Copy code
https://myurl.supabase.co/rest/v1/posts?select=slug
This line above returns all my "slug" fields in the table. I want to filter the rows by slug, not get the all slugs. I'm not finding it in the docs.
g
'https://myurl.supabase.co/rest/v1/posts?id=eq.1&select=*' where id=eq.1 is your column, filter and value to filter on. If you go to the API tab in the UI it gives examples of how to access most things in your table with js and curl.
r
thanks