Api request with GraphQL query

We don’t have a query builder for GraphQL. The query for GraphQL is normally a simple GET or POST, that is possible with the API connector.

Request will look like:

GET http://myapi/graphql?query={allCdrs{cdrs{id+src+accountcode+calldate+billsec+timestamp+duration+disposition+outbound_cnum+linkedid}}}

See https://graphql.org/learn/serving-over-http/.

3 Likes