stopa
04/26/2022, 5:57 PMbookshelf { user_id, id, title, ...}
book { id, title, ... }
bookshelf_book { book_id, bookshelf_id, ordering }
How would I go about getting all the bookshelves, with the book and ordering attached from the client?Needle
04/26/2022, 5:57 PM/title
command!
We have solved your problem?
Click the button below to archive it.Lennart
04/27/2022, 7:13 PMGET /bookshelf_book?select=ordering,book(*),bookshelf(*)
Needle
04/27/2022, 7:13 PMstopa
04/27/2022, 7:22 PMLennart
04/27/2022, 7:31 PMsupabase.from('bookshelf_book').select('ordering,book(*),bookshelf(*)')