Data Schema
Golden's GraphQL API is introspective, meaning it can be used to retrieve details about the GraphQL schema itself.
Try the following queries in the GraphiQL explorer to retrieve details about the schema and explicit types:
query {
__schema {
types {
name
description
fields {
name
}
}
}
}
query {
__type(name: "Entity") {
name
kind
description
fields {
name
}
}
}
Last modified 5mo ago