You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -376,6 +396,8 @@ See [Prisma Migrate](https://www.prisma.io/docs/orm/prisma-migrate) documentatio
376
396
377
397
# Limitations
378
398
379
-
1. Only SQLite (better-sqlite3) and Postgres (pg) database providers are supported.
399
+
1. Only SQLite (better-sqlite3) and Postgres (pg) database providers are supportedfor now.
380
400
1. Prisma client extensions are not supported.
381
401
1. Prisma custom generators are not supported (may add support in the future).
402
+
1. [Filtering on JSON fields](https://www.prisma.io/docs/orm/prisma-client/special-fields-and-types/working-with-json-fields#filter-on-a-json-field-advanced) is not supported yet.
403
+
1. Raw SQL query APIs (`$queryRaw`, `$executeRaw`) are not supported.
[ZenStack](https://zenstack.dev) is a toolkit that simplifies the development of a web app's backend. It enhances [Prisma ORM](https://prisma.io) with flexible Authorization and auto-generated, type-safe APIs/hooks, simplifying full-stack development.
4
+
5
+
This VS Code extension provides code editing helpers for authoring ZenStack's schema files (.zmodel files).
6
+
7
+
## Features
8
+
9
+
- Syntax highlighting of `*.zmodel` files
10
+
11
+
- In case the schema file is not recognized automatically, add the following to your settings.json file:
12
+
13
+
```json
14
+
"files.associations": {
15
+
"*.zmodel": "zmodel"
16
+
},
17
+
```
18
+
19
+
- Auto formatting
20
+
21
+
- To automatically format on save, add the following to your settings.json file:
22
+
23
+
```json
24
+
"editor.formatOnSave": true
25
+
```
26
+
27
+
- To enable formatting in combination with prettier, add the following to your settings.json file:
28
+
```json
29
+
"[zmodel]": {
30
+
"editor.defaultFormatter": "zenstack.zenstack"
31
+
},
32
+
```
33
+
34
+
- Inline error reporting
35
+
- Go-to definition
36
+
- Hover documentation
37
+
- Code section folding
38
+
39
+
## Links
40
+
41
+
- [Home](https://zenstack.dev)
42
+
- [Documentation](https://zenstack.dev/docs)
43
+
- [Community chat](https://discord.gg/Ykhr738dUe)
44
+
- [Twitter](https://twitter.com/zenstackhq)
45
+
- [Blog](https://dev.to/zenstack)
46
+
47
+
## Community
48
+
49
+
Join our [discord server](https://discord.gg/Ykhr738dUe) for chat and updates!
0 commit comments