graphql-rest-wrapper icon indicating copy to clipboard operation
graphql-rest-wrapper copied to clipboard

Wraps RestAPI with GraphQL

Results 3 graphql-rest-wrapper issues
Sort by recently updated
recently updated
newest added

I am getting 'TypeError: gqlRestWrapper is not a constructor' for code below, please advise what's missing? did anyone encounter this issue? const wrapper = new gqlRestWrapper('http://localhost:9090/restapi', { name: 'MyRestAPI', generateSchema:...

Hi, I am getting error "regeneratorRuntime is not defined" while running your example.

I've got this ```js const fetchApi = async () => fetch(myApiUrl, { method: 'GET', headers: { 'authorization': 'Basic RDJXREIzV0ZETTNIOEJLQUc5VkY1UUNLQ1UyUVhLWjU6', 'Accept': 'application/json', 'Content-Type': 'application/json', } }) .then(function(response) { if(response.status == 200)...