Skip to content

Instantly share code, notes, and snippets.

View richard1230's full-sized avatar
💭
公众号: growing0101,主要发布漏洞挖掘相关文章

richardo1o1 richard1230

💭
公众号: growing0101,主要发布漏洞挖掘相关文章
View GitHub Profile
@richard1230
richard1230 / introspection_query.graphql
Created October 15, 2024 08:59 — forked from franzejr/introspection_query.graphql
GraphQL full Introspection query
query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
subscriptionType { name }
types {
...FullType
}
directives {
name