@blitznocode/blitz-orm 0.0.39 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +7 -4
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -2,11 +2,14 @@ Blitz-orm is a public package that can be open-sourced
|
|
|
2
2
|
|
|
3
3
|
Similar to Prisma, it's used to interpret a BQL schema and provide the client and the server with tools to ensure they are "speaking the same language"
|
|
4
4
|
|
|
5
|
+
## How to use
|
|
6
|
+
- Install the package with your packages manager, like this:
|
|
7
|
+
`yarn add @blitznocode/blitz-orm`
|
|
8
|
+
|
|
9
|
+
- Create a
|
|
10
|
+
|
|
5
11
|
## Definitions
|
|
6
|
-
|
|
7
|
-
The client is usually a frontend app that will send BQL requests (queries or mutations) to the API
|
|
8
|
-
### Server
|
|
9
|
-
The server is usually and endpoint that receives a BQL object
|
|
12
|
+
|
|
10
13
|
|
|
11
14
|
## How does it work
|
|
12
15
|
The client can get
|