개발/프론트엔드

7. GraphQL Subscription

개발자_무형 2019. 12. 26. 15:41
반응형

---

# What is Subscription
Subscription is used when the client wants real-time updates pushed from the server.

```
subscription
  liftStatusChange {
    name
    capacity
    status
  }
}
```

반응형