From 12b0d789bc41f205c10691f3a8828c245ee491a3 Mon Sep 17 00:00:00 2001 From: Max Clayton Clowes Date: Mon, 5 Aug 2024 12:29:59 +0100 Subject: [PATCH 1/2] Update querying.md --- docs/using-the-api/querying.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/using-the-api/querying.md b/docs/using-the-api/querying.md index ec21b5416..5e12ee383 100644 --- a/docs/using-the-api/querying.md +++ b/docs/using-the-api/querying.md @@ -63,6 +63,17 @@ Our `GET /{dataType}` endpoints typically return an array of items of that given ## Example queries +### Companies with connected platforms + + + + +```http +GET /companies/?query=platform! +``` + + + ### Invoices with amounts outstanding Query: `amountDue > 0` From 167f711e51bbdb5477934ef791f2e75855024bfd Mon Sep 17 00:00:00 2001 From: Max Clayton Clowes Date: Mon, 5 Aug 2024 12:55:32 +0100 Subject: [PATCH 2/2] Update querying.md --- docs/using-the-api/querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/using-the-api/querying.md b/docs/using-the-api/querying.md index 5e12ee383..f82e37bbc 100644 --- a/docs/using-the-api/querying.md +++ b/docs/using-the-api/querying.md @@ -69,7 +69,7 @@ Our `GET /{dataType}` endpoints typically return an array of items of that given ```http -GET /companies/?query=platform! +GET /companies/?query=platform!="" ```