Resposta limpa do GraphQL do Facebook
cleanGraphQl(body) {
// Response contains two json objects, we want the first one only
const pos = body.lastIndexOf('{');
body = body.slice(0, pos - 1);
try {
return JSON.parse(body);
} catch (e) {
return {};
}
}
Cool Saint