服务器端正在使用 REST 返回真或假。如何在这个上面写一个graphql-tag?
这是服务器返回的内容:{ true }
我试过了:
const GET_ACCESS = gql`
query getAccess {
access @rest(type: "access", method: "GET" path: "/access") {
access
}
}
`
但是什么都没有返回,因为我的 json 对象不是 {access: true} 它只是 { true }