我试图在 react-native 中获取 graphql 服务,但它给出了一个错误没有为 graphql url 找到合适的请求处理程序
我写了这样的代码来获取
var string = "mutation M { signUp(email:\""+email+"\",password:\""+password+"\",devicetoken: \"1234567\",devicetype: \"IOS\", version: \"5.1\") {_id,email,password}}"
fetch(REQUEST_URL,{
method:'POST',
headers:{
'Accept':'application/json',
'content-Type':'application/graphql'
},
body:string
})
任何人都可以告诉我我的代码有什么问题吗,给我一些建议,告诉我如何在 react-native 中获取 graphql 查询,非常感谢任何帮助