Query the graph
POST
/resources/graph
For full guide on how to query the graph, see developer portal.
Parameters
Query Parameters
format
Type
string
Valid values
"json""csv""jsonTable"includeHeaders
If format is CSV, determines whether headers should be included in output
Type
boolean
Default
trueRequest Body
JSON { "edge": "orders", "filter": "orderState == 'confirmed'", "orderBy": "createdAt desc", "limit": 10, "node": { "fields": [ "orderId", "orderNumber", "customerNumber", "orderTotal" ], "navigate": [ { "edge": "deliveries", "node": { "fields": [ "deliveryId", "shippingTotal" ] } } ] } }
[
]
Responses
OK
JSON "additionalProperties": null
{
}
POST
/resources/graph