I have a posts table connected to the user who created it through uuid. How can I select posts and also get user information?
I have something like this: const test = await subase.from("posts").select(
*, users( username )
*, users( username )
);
but it always returns the message "Could not find a relationship between 'posts' and 'users' in the schema cache". How can I retrieve user data from posts table?
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.