how can get this problem solved: `const { data: po...
# javascript
s
how can get this problem solved:
const { data: posts, error } = await supabase.from("students").select("id, name, study(tutorial_id)");
in which study is the referencing table for many to many relationships. But when I fetch
study(tutorial_id)
it gives me an array. I just want specific tutorial_id where the user matches the row
g
s
Thanks
Now my problem is solved