“Was ist die Selbstbeobachtung in GraphQL” Code-Antworten

Introspection 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

Was ist die Selbstbeobachtung in 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

Ähnliche Antworten wie “Was ist die Selbstbeobachtung in GraphQL”

Fragen ähnlich wie “Was ist die Selbstbeobachtung in GraphQL”

Weitere verwandte Antworten zu “Was ist die Selbstbeobachtung in GraphQL” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen