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
huv1k
07/15/2018, 12:38 PM
No
huv1k
07/15/2018, 12:39 PM
You can use parent stuff in resolver for example 🙂
r
radicand
07/15/2018, 1:09 PM
cheers, that's what i assumed but always worth checking.