currentUserUpdates.graphql 135 B

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