venus
04/21/2022, 3:58 PMalbums
) has. Is this possible to do in one query? So basically I want to get known how many images
each albums
record has
js
const { data } = await supabaseClient
.from("albums")
.select(
`
name,
created_at,
images (*)
`)
.limit(3, { foreignTable: "images" });
Needle
04/21/2022, 3:58 PM/title
command!
We have solved your problem?
Click the button below to archive it.Needle
04/21/2022, 3:59 PMgaryaustin
04/21/2022, 4:41 PMNeedle
04/21/2022, 4:41 PMvenus
04/21/2022, 8:14 PMimages(count)
instead. Thanks