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

8. GraphQL Introspection

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

# What is Introspection
Inspection is the ability to query details about the current API's schema.

```
query {
  __schema {    // introspection!
    types {
      name
      description
    }
  }
}
```

반응형

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

Janus media server 설치하기  (4) 2020.03.17
Intel Open WebRTC Toolkit 클라이언트 삽질기  (0) 2020.03.13
7. GraphQL Subscription  (0) 2019.12.26
6. GraphQL Mutations  (0) 2019.12.26
5. GraphQL Interface  (0) 2019.12.26