Skip to content

Commit

Permalink
Update limitations.md
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmueller committed Sep 19, 2019
1 parent 248b4f4 commit 988f78c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/limitations.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Current limitations

- Does not work on Windows. Tested on Mac and Linux only. Tracking issue: https://github.com/prisma/prisma2/issues/4
- Processes 1 request at a time, no parallelism during the early preview period. This will be fixed before GA.
- Some edge cases for complex nested mutations don't work properly.
- Limited auto-complete in Typescript projects due to a compiler bug. We raised a PR to fix that [here](https://github.com/microsoft/TypeScript/pull/32100).
- No realtime API/subscriptions. In the future, we will have Prisma events engine (after the GA) that would pave way for such a feature, there is no ETA for this yet.
- Models must have an `@id` attribute and it must take one of these forms:
1. Does not work on Windows. Tested on Mac and Linux only. Tracking issue: https://github.com/prisma/prisma2/issues/4
2. Processes 1 request at a time, no parallelism during the early preview period. This will be fixed before GA.
3. Some edge cases for complex nested mutations don't work properly.
4. Limited auto-complete in Typescript projects due to a compiler bug. We raised a PR to fix that [here](https://github.com/microsoft/TypeScript/pull/32100).
5. No realtime API/subscriptions. In the future, we will have Prisma events engine (after the GA) that would pave way for such a feature, there is no ETA for this yet.
6. Models must have an `@id` attribute and it must take one of these forms:
- `Int @id`
- `String @id @default(uuid())`
- `String @id @default(cuid())`
- When [introspecting](./introspection.md) a database, Prisma only recognizes many-to-many relations that follow the Prisma conventions for [relation tables](https://github.com/prisma/prisma2/blob/master/docs/relations.md#mn).
7. When [introspecting](./introspection.md) a database, Prisma only recognizes many-to-many relations that follow the Prisma conventions for [relation tables](https://github.com/prisma/prisma2/blob/master/docs/relations.md#mn).

0 comments on commit 988f78c

Please sign in to comment.