Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

querying graphql with node

I am trying to query a graphQL endpoint but I can't figure out what I am doing wrong. How am I supposed to set up the graphQL object to pass over. If I am trying to pass

{
  name {
     age
  }
}

How should I be wrapping this to get the correct response from the server? The full code I am currently working with is below

var http = require('http')
var qs = require('querystring')

var options = {
    hostname: 'url',
    method: 'POST',
    path: '/query'
}

var req = http.request(options, function(res){
    console.log('STATUS: ' + res.statusCode);
    console.log('HEADERS: ' + JSON.stringify(res.headers));
    res.on('data', function (chunk) {
        console.log('BODY: ' + chunk);
    });
    res.on('end', function() {
        console.log('No more data in response.')
    })
})

var query = qs.stringify({data: {classes:{}}})


req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});

req.write(query)
req.end()
like image 824
Mike F Avatar asked Nov 20 '22 12:11

Mike F


2 Answers

You can do it like this.

payload = {
    "query": `{
        name {
            age
        }
    }`
}
JSON.stringify(payload)

The name "query" might be different in your case. Basically, you need to convert the JSON query to string. This is how I do it with the GitHub GraphQL API v4.

like image 56
Samkit Jain Avatar answered Dec 04 '22 04:12

Samkit Jain


Here is the example using fetch. I think you don't need apollo client unless you really need it.

require('isomorphic-fetch');

fetch('https://api.example.com/graphql', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
        'authorization': `Bearer ${token}`,
      },
      body: JSON.stringify({ query: '{ name { age } }' }),
})
like image 38
ohkts11 Avatar answered Dec 04 '22 04:12

ohkts11