data = fetch("https://cdn.fastql.io/v1/thechicagoreporter", {
body: JSON.stringify({
operationName: 'ElectoraidQuery',
query: query
}),
headers: {"content-type": "application/json"},
method: "POST",
mode: "cors"
}).then(response => {
return response.json();
})