userUpdates.graphql 127 B

1234567
  1. subscription userUpdates($userId: ID!) {
  2. userUpdates(userId: $userId) {
  3. user {
  4. ...userDetailAttributes
  5. }
  6. }
  7. }