graphql1 [GraphQL] 전체 스키마 조회 쿼리 GraphQL 를 실무에서 접하면서 swagger 같은 API 문서가 없어서 구조 파악에 애를 먹다, 아래의 스키마를 조회할 수 있는 문법을 발견하여 공유한다. ! query { __schema { queryType { name } mutationType { name } subscriptionType { name } types { ...FullType } directives { name description locations args { ...InputValue } } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { name description args { ...InputValue } typ.. 2022. 9. 22. 이전 1 다음