Hi there, when running locally, most of my queries...
# prisma-whats-new
l
Hi there, when running locally, most of my queries work excepted for my custom functions. For instance my signup method (working when deployed non-locally) generates the following error:
Copy code
{\"response\":{\"code\":3016,\"requestId\":\"us-west-2:simple:cj8zwsd0p9om80139ej8flnlf\",\"error\":\"Project not found: 'cj8zwmnra00090155tg3vellh'\",\"status\":200},\"request\":{\"query\":\"\\n    query {\\n      User(email: \\\"<mailto:test@test.com|test@test.com>\\\") {\\n        id\\n      }\\n    }\\n  \"}}
Project not found: 'cj8zwmnra00090155tg3vellh'
where the project id is the id I find in my
.graphcoolrc
for my local deployment
n
gc info
should help you šŸ™‚
l
Hmm doesn't show me much more than what is in my project
.graphcoolrc
The output:
Copy code
Service Name Cluster / Service ID
──────────── ────────────────────────────────────────────
staging      shared-us-west-2/cj8tajmvj0c6s0129pydpyenq
dev          local/cj8zx2w9q00hr0155pooiyjg2

API:           Endpoint:
────────────── ────────────────────────────────────────────────────────────
Simple         <http://localhost:60000/simple/v1/cj8zx2w9q00hr0155pooiyjg2>
Relay          <http://localhost:60000/relay/v1/cj8zx2w9q00hr0155pooiyjg2>
Subscriptions  <ws://localhost:60000/subscriptions/v1/cj8zx2w9q00hr0155pooiyjg2>
File           <http://localhost:60000/file/v1/cj8zx2w9q00hr0155pooiyjg2>
I deleted and redeployed my local target, hence the change of id, but the error is still there
l
@kimf Thanks for the url, updating to the latest
graphcool-lib
fixed my issue šŸ‘