not necessarily a gc question, but does the graphq...
# orm-help
r
not necessarily a gc question, but does the graphql spec support any way to reference selected nodes further down in depth? e.g. parent.tags in below fake example?,
Copy code
allPosts(author: "xxx") {
id
name
tags
author {
name
posts(hasTags: parent.tags) {
id
name
}
}
}
h
No
You can use parent stuff in resolver for example 🙂
r
cheers, that's what i assumed but always worth checking.