zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

introspection.graphql (1340B)


      1 query IntrospectionQuery {
      2   __schema {
      3     description
      4     queryType {
      5       name
      6     }
      7     mutationType {
      8       name
      9     }
     10     subscriptionType {
     11       name
     12     }
     13     types {
     14       ...FullType
     15     }
     16     directives {
     17       name
     18       description
     19       locations
     20       isRepeatable
     21       args {
     22         ...InputValue
     23       }
     24     }
     25   }
     26 }
     27 
     28 fragment FullType on __Type {
     29   kind
     30   name
     31   description
     32   fields(includeDeprecated: true) {
     33     name
     34     description
     35     args {
     36       ...InputValue
     37     }
     38     type {
     39       ...TypeRef
     40     }
     41     isDeprecated
     42     deprecationReason
     43   }
     44   inputFields {
     45     ...InputValue
     46   }
     47   interfaces {
     48     ...TypeRef
     49   }
     50   enumValues(includeDeprecated: true) {
     51     name
     52     description
     53     isDeprecated
     54     deprecationReason
     55   }
     56   possibleTypes {
     57     ...TypeRef
     58   }
     59 }
     60 
     61 fragment InputValue on __InputValue {
     62   name
     63   description
     64   type {
     65     ...TypeRef
     66   }
     67   defaultValue
     68 }
     69 
     70 fragment TypeRef on __Type {
     71   kind
     72   name
     73   ofType {
     74     kind
     75     name
     76     ofType {
     77       kind
     78       name
     79       ofType {
     80         kind
     81         name
     82         ofType {
     83           kind
     84           name
     85           ofType {
     86             kind
     87             name
     88             ofType {
     89               kind
     90               name
     91               ofType {
     92                 kind
     93                 name
     94               }
     95             }
     96           }
     97         }
     98       }
     99     }
    100   }
    101 }