I have a mutation that creates `Action` then conne...
# orm-help
g
I have a mutation that creates
Action
then connect
members
to this
Action
. And I have a subscription for creating
Action
on frontend. When
Action
is created I receive it on frontend but without
members
because it didn't have time to be connected. Any ideas how can I fix it? Mutation - https://gist.github.com/SilencerWeb/004c51fa4156059c121a5d722f0bd5eb
j
I'm guessing your subscription is looking for mutations in Action, which is fired as soon as an Action is created. I don't think there's a way you can temporarily halt the subscription from sending data.