-
Hi,
I have a `project.prisma` file beginning with:
```
datasource db {
provider = "postgres"
url = env("POSTGRES_URL")
}
```
However, when I run either:
`POSTGRES_URL=hello_w…
-
```
λ npx prisma2 -v
prisma2@2.0.0-alpha.785, binary version: 3e74ccae138e0c7330c1d8f2a67fb7a234d220e8
```
![image](https://user-images.githubusercontent.com/183673/74595510-79380700-5042-11ea-8…
-
```
λ npx prisma2 -v
prisma2@2.0.0-alpha.785, binary version: 3e74ccae138e0c7330c1d8f2a67fb7a234d220e8
```
![image](https://user-images.githubusercontent.com/183673/74595457-cbc4f380-5041-11ea-9…
-
After running: `npx prisma-upgrade`,
I had a suggestion to run:
```
Fix 1-1 relations by adding `UNIQUE` constraints
https://pris.ly/d/schema-incompatibilities#inline-1-1-relations-are-recog…
-
As far as I aware of, the following feature from Prisma:
```
type MyRelation @relationTable {
user: User!
profile: Profile!
}
```
is somehow implemented in Prisma2. But there is no docu…
-
In reference to https://github.com/prisma/prisma2/issues/657
When running prisma2 cli, it does not show `prisma2 studio` as one of the possible commands in help. It may need to be added there.
-
```
λ npx prisma2 -v
prisma2@2.0.0-alpha.785, binary version: 3e74ccae138e0c7330c1d8f2a67fb7a234d220e8
```
Close:
![image](https://user-images.githubusercontent.com/183673/74595503-53126700-504…
-
Not sure if this is a redwood problem, but with Redwood 0.1.0 I was able to run `yarn install` after generating the app, but with 0.2.2 I'm not able to. The installation hangs forever on `@prisma2/cli…
-
`subscriptionType` which was supported by nexus is not supported by nexus-future yet.
-
Hi.
I need to filter posts based on multiple sorting criteria, so I do the following:
```js
ctx.photon.posts.findMany({
where: filters,
orderBy:{
createdAt:"desc",
…