It would be great if subscriptions also worked for nested nodes. E.g.: If somebody wants to subscribe to new posts and these posts are a relation in the current user.
You can subscribe to new posts of a specific user like this:
subscription {
Post(filter: {
mutation_in: [CREATED],
node: {
user: {
id: $userId
}
}
}) {
id
}
}
Or are you talking about something else?
Clarified that my suggestion above was the right approach here :slightly_smiling_face:
Most helpful comment
Clarified that my suggestion above was the right approach here :slightly_smiling_face: