(q string)
| 92 | } |
| 93 | |
| 94 | func runGraphqlQuery(q string) (string, error) { |
| 95 | output, _, err := queryWithTs(queryInp{body: q, typ: "application/dql"}) |
| 96 | return output, err |
| 97 | } |
| 98 | |
| 99 | func runJSONQuery(q string) (string, error) { |
| 100 | output, _, err := queryWithTs(queryInp{body: q, typ: "application/json"}) |
no test coverage detected