본문 바로가기
개발/프론트엔드

7. GraphQL Subscription

by 개발자_무형 2019. 12. 26.
반응형

---

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

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

반응형

'개발 > 프론트엔드' 카테고리의 다른 글

Intel Open WebRTC Toolkit 클라이언트 삽질기  (0) 2020.03.13
8. GraphQL Introspection  (0) 2019.12.26
6. GraphQL Mutations  (0) 2019.12.26
5. GraphQL Interface  (0) 2019.12.26
4. GraphQL Union  (0) 2019.12.26