Graphene Django “Must provide query string”

后端 未结 7 652
醉酒成梦
醉酒成梦 2021-01-12 06:52

I have setup a Graphene server using Django. When I run my queries through GraphiQL (the web client), everything works fine. However, when I run from anywhere else, I get th

相关标签:
7条回答
  • 2021-01-12 07:18

    I encountered exactly the same problem as the original poster, Gasim. Studying the code in 'graphiql.html' I see that they're converting the query string, that goes into the body, into the query parameter in the URL. Thus you end up with this URL being sent via Postman:

    http://127.0.0.1:8000/graphql?query=%7B%0A%20%20allCategories%20%7B%0A%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20ingredients%20%7B%0A%20%20%20%20%20%20%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A

    It seems nonsensical to me to duplicate precisely what's in the body in the query string in the URL too but that appears to be the only way to get the Graphene server to return a valid response.

    Surely this is a bug/shortcoming that will be fixed?

    Robert

    0 讨论(0)
  • 2021-01-12 07:19

    Here's how I was able to get a successful response from Postman using a graphene Django backend with a simple mutation:

    1. Set method to POST
    2. Add the URL to your graphQL endpoint, e.g. http://localhost:8000/api/
    3. Add one header -- key: "Content-Type" , value: "application/json"
    4. Set the body to "raw"
    5. Paste in your query into the body window, e.g. {"query":"{myModels {id}}","variables":"null","operationName":null}

    This sounds pretty much like what you did, so you must be close.

    0 讨论(0)
  • 2021-01-12 07:27

    Enable graphine on django

      url(r'^graphql', csrf_exempt(GraphQLView.as_view(graphiql=settings.DEBUG))),
    

    Execute some query and see it is working

    On Chrome browser, go to graphiQL endpoint: http://localhost:8000/graphql? open "Developer Tools" in browser and go to "Network" tab.

    Execute your query again. Now it appears on list of requests. Now right mouse click on it and copy it "copy as CURL". Now you can strait copy paste it to linux terminal with curl installed. Or like in your case you can try to deduct what is what there, and try to reuse it in your IDE like client like Insomnia or Postman. For instance you may discover that authorisation that works with session on graphiQL enpoint, is not what you want at the end...

    curl 'http://localhost:8000/graphql?' -H 'Origin: http://localhost:8000' -H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: en-US,en;q=0.9,pl;q=0.8,de;q=0.7' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36' -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'Cookie: _ga=GA1.1.1578283610.1528109563; _gid=GA1.1.920024733.1541592686; csrftoken=EGBeegFoyMVl8j1fQbuEBG587nOFP2INwv7Q0Ee6HeHHmsLOPUwRonzun9Y6pOjV; sessionid=4u9vngcnmjh927a9avpssvc4oq9qyqoe' -H 'Connection: keep-alive' -H 'X-CSRFToken: EGBeegFoyMVl8j1fQbuEBG587nOFP2INwv7Q0Ee6HeHHmsLOPUwRonzun9Y6pOjV' --data-binary '{"query":"{\n  allStatistics(projectId: 413581, first:25) {\n    pageInfo {\n      startCursor\n      endCursor\n      hasPreviousPage\n      hasNextPage\n    }\n    edges {\n      cursor\n      node {\n        id\n        clickouts\n        commissionCanc\n        commissionConf\n        commissionLeads\n        commissionOpen\n        eventDate\n        extractTstamp\n        hash\n        leads\n        pageviews\n        projectId\n        transactionsCanc\n        transactionsConf\n        transactionsOpen\n      }\n    }\n  }\n}\n","variables":null,"operationName":null}' --compressed
    
    0 讨论(0)
  • 2021-01-12 07:28

    Checkout sample apps and see how they do things,

    e.g. https://github.com/mjtamlyn/graphene-tutorial they do the following:

    from django.views.decorators.csrf import csrf_exempt
    from graphene_django.views import GraphQLView
    
    url(r'^explore', GraphQLView.as_view(graphiql=True)),
    url(r'^graphql', csrf_exempt(GraphQLView.as_view())),
    
    0 讨论(0)
  • 2021-01-12 07:33

    This error is raised when parse_body is unable to parse the incoming data. I'd start there by looking at the data passed into this method and ensuring it's of the correct type.

    For example, the multipart/form-data section naively returns request.POST, which may need to be overwritten to handle, for example, the request that apollo-upload-client sends for file upload handling. In our case we created a view to both require a login and to support the apollo-upload-client use case and it works fine.

    0 讨论(0)
  • 2021-01-12 07:34

    I faced the same problem when I try to used graphQl query using POSTMAN, In POSTMAN send data in row with json type. You have to make json data grapQl query and mutations data like this

    Query Command:

    {"query":"{user(id:902){id,username,DOB}}"}
    

    Mutations Command:

    { "query": "mutation {createMutations(reviewer:36, comments:\"hello\",loan: 1659, approved: true ){id}}" }
    
           #commnent: String Type
           #data_id:Int Type
           #approved:Boolean Type
    
    0 讨论(0)
提交回复
热议问题