ticketLiveUserUpdates.graphql 222 B

1234567891011
  1. subscription ticketLiveUserUpdates(
  2. $userId: ID!
  3. $key: String!
  4. $app: EnumTaskbarApp!
  5. ) {
  6. ticketLiveUserUpdates(userId: $userId, key: $key, app: $app) {
  7. liveUsers {
  8. ...ticketLiveUserAttributes
  9. }
  10. }
  11. }