“Co to jest introspekcja w GraphQL” Kod odpowiedzi

Graphql introspekcja

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

Co to jest introspekcja w 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

Odpowiedzi podobne do “Co to jest introspekcja w GraphQL”

Pytania podobne do “Co to jest introspekcja w GraphQL”

Więcej pokrewnych odpowiedzi na “Co to jest introspekcja w GraphQL” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu