Within AppSync I have 2 users, Adam and Eve, both using the same Car (identified by a VIN).
When Adam startsCar he is subscribed to updateFuel mutation. How can I have Eve subscribing to updateFuel the moment Adam does a startsCar call ?
I am having problems wrapping my head around permissions and user context. startsCar is running with Adam's Cognito credentials and to have Eve receiving the event AFAIK the second updateFuel should be subscribed using Eve's Cognito credentials.
Is the above scenario possible ? How can the solution be approached ?
I have thought about adding Adam to an admin group but still stuck on the idea of subscribing to updateFuel as Eve.