“Что такое самоанализ в GraphQL” Ответ

Самоанализ GraphQL

The introspection query is:

{__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}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}
Clumsy Chipmunk

Что такое самоанализ в GraphQL

What is GraphQL Introspection?

GraphQL introspection enables you to query a GraphQL server 
for information about the underlying schema and the queries it supports. 

This includes data like types, fields, queries, mutations, 
and even the field-level descriptions.

Introspection queries start with __:

__schema
__type
__typename

~ Source: https://graphql.org/learn/introspection/
---
KostasX

Ответы похожие на “Что такое самоанализ в GraphQL”

Вопросы похожие на “Что такое самоанализ в GraphQL”

Больше похожих ответов на “Что такое самоанализ в GraphQL” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования