-
When doing something like SELECT *, ->posts AS posts FROM user:1 FETCH posts It will return all posts for a given user. I thought something like
|
Beta Was this translation helpful? Give feedback.
Answered by
tobiemh
Jan 5, 2023
Replies: 1 comment
-
Hi @emehrkay, currently you could do something like the following... SELECT *, (SELECT ->posts.* FROM $parent LIMIT 3) FROM user:1; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tobiemh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @emehrkay, currently you could do something like the following...