This is what i'm sending over:
query = {"query": "mutation { memberCreate ( email:'[email protected]', fullName:'John Doe') { member { id username } } }"}
qb_request = requests.post("some_url",
headers={"Accept": "application/json",
"Authorization": "some_auth"
},
data=json.dumps(query))
And i get the following error:
{u'errors': [{u'message': u'No query string was present'}]}
What is the problem?