adminExecutor is an implementation of both QueryExecutor and MutationExecutor that proxies query resolution through Query method in dgraph server, and it doesn't require authorization. Currently it's only used for querying gqlschema during init.
| 127 | // it doesn't require authorization. Currently it's only used for querying |
| 128 | // gqlschema during init. |
| 129 | type adminExecutor struct { |
| 130 | dg *dgraph.DgraphEx |
| 131 | } |
| 132 | |
| 133 | // A Resolved is the result of resolving a single field - generally a query or mutation. |
| 134 | type Resolved struct { |
nothing calls this directly
no outgoing calls
no test coverage detected