(schema *ast.Schema, str string, rules *rules.Rules)
| 82 | } |
| 83 | |
| 84 | func MustLoadQueryWithRules(schema *ast.Schema, str string, rules *rules.Rules) *ast.QueryDocument { |
| 85 | q, err := LoadQueryWithRules(schema, str, rules) |
| 86 | if err != nil { |
| 87 | panic(err) |
| 88 | } |
| 89 | return q |
| 90 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…