()
| 87 | ErrQueryComplexityExceeded = errors.New("search query complexity limit exceeded") |
| 88 | ) |
| 89 | |
| 90 | // MaxASTNodes specifies the maximum allowed AST node complexity after deduplication. |
| 91 | const MaxASTNodes = 50 |
| 92 | |
| 93 | type QueryParseError struct { |
| 94 | BadQuery string |
no outgoing calls