REST to GraphQL
Examples of how to use Bi-direct to make REST API calls to a server that only supports GraphQL queries.
Bi-Direct endpoint for REST to SOAP: https://tri-way.vercel.app/resttographql
Example of a Query request
Normally this is how a GraphQL query looks like
{
characters(page: 1) {
results {
name
id
}
}
}Example of a query made using Bi-Direct
Headers
Request Body
Last updated