I’m upgrading my app from `prisma2@2.0.0-alpha.538...
# orm-help
j
I’m upgrading my app from
prisma2@2.0.0-alpha.538
➡️
@prisma/cli@2.0.0-beta.1
. My code compiles, but when I execute a simple query at
<http://localhost:8000/graphql>
, the request hangs forever with this in the server output:
Copy code
prisma:info  Starting a postgresql pool with 9 connections.
prisma:info  Started http server on 127.0.0.1:51807
I have a postgress DB running locally:
Copy code
datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
  default  = true
}
r
Hey @James Fox 👋 Could you try creating the migrations, running
prisma generate
and then querying again?