(ctx context.Context, q schema.Query)
| 33 | // queries) that must be supplied to the executor. |
| 34 | type QueryRewriter interface { |
| 35 | Rewrite(ctx context.Context, q schema.Query) ([]*dql.GraphQuery, map[string]string, error) |
| 36 | } |
| 37 | |
| 38 | // QueryResolverFunc is an adapter that allows to build a QueryResolver from |
no outgoing calls