개발/프론트엔드

8. GraphQL Introspection

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

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

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

반응형