(inp queryInp)
| 167 | } |
| 168 | |
| 169 | func queryWithTs(inp queryInp) (string, *tsInfo, error) { |
| 170 | out, tsInfo, _, err := queryWithTsForResp(inp) |
| 171 | return out, tsInfo, err |
| 172 | } |
| 173 | |
| 174 | // queryWithTsForResp query the dgraph and returns it's http response and result. |
| 175 | func queryWithTsForResp(inp queryInp) (string, *tsInfo, *http.Response, error) { |
no test coverage detected