(req *http.Request)
| 132 | func (q *SearchQuery) URLSuffix() string { return "camli/search/query" } |
| 133 | |
| 134 | func (q *SearchQuery) FromHTTP(req *http.Request) error { |
| 135 | dec := json.NewDecoder(io.LimitReader(req.Body, 1<<20)) |
| 136 | return dec.Decode(q) |
| 137 | } |
| 138 | |
| 139 | // exprQuery optionally specifies the *SearchQuery prototype that was generated |
| 140 | // by parsing the search expression |
no outgoing calls
no test coverage detected