I noticed an issue when using the “request” method...
# orm-help
c
I noticed an issue when using the “request” method with javascript prisma-binding library. Depending on the server’s location I get different results. In some cases the response object has the property “data”, and others it excludes it. For example: My server in NYC
Copy code
const result = await client.request(`
  query {
    users {
      id
    }
  }
`);

console.log(result)
>> {"data":{"users":[{"id":"SOMEUSERID"},]}}
My server in DC area:
Copy code
console.log(result)
>> {"users":[{"id":"SOMEUSERID"},]}
Has anyone else experienced this issue?