@smartive/graphql-magic 17.8.2 → 18.0.0

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/CHANGELOG.md CHANGED
@@ -1,6 +1 @@
1
- ## [17.8.2](https://github.com/smartive/graphql-magic/compare/v17.8.1...v17.8.2) (2025-05-27)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * **deps:** update docusaurus monorepo to v3.8.0 ([#298](https://github.com/smartive/graphql-magic/issues/298)) ([d700089](https://github.com/smartive/graphql-magic/commit/d700089c9eb4d07f26af5fefd9d4e07ab59e6abb))
1
+ # [18.0.0](https://github.com/smartive/graphql-magic/compare/v17.8.2...v18.0.0) (2025-05-28)
package/README.md CHANGED
@@ -1,18 +1,15 @@
1
- # graphql-magic!
1
+ # graphql-magic
2
2
 
3
3
  Welcome to `graphql-magic`, a revolutionary library that transforms the way of working with GraphQL and databases in TypeScript projects. This library aims to streamline the development process, enhancing speed, efficiency, and type safety.
4
4
 
5
5
  ## Key Features
6
6
 
7
7
  - **Model First**: Define your models and their relations directly in TypeScript. `graphql-magic` seamlessly integrates with your TypeScript projects, ensuring type safety and reducing the need for redundant code.
8
-
9
8
  - **Automatic GraphQL Schema Generation**: Forget about manually writing your GraphQL schemas. With `graphql-magic`, your TypeScript model definitions are automatically transformed into fully functional GraphQL schemas.
10
9
 
11
10
  - **Database Management Made Easy**: Leveraging the power of Knex for migrations, `graphql-magic` not only generates the necessary database schemas based on your models but also handles all database migrations for you. This means your database is always in sync with your application's models without any extra effort.
12
-
13
11
  - **Speed and Efficiency**: Designed with performance in mind, `graphql-magic` ensures that your applications run swiftly and efficiently, handling complex queries and mutations with ease.
14
12
 
15
-
16
13
  ## Why graphql-magic?
17
14
 
18
15
  `graphql-magic` was developed by smartive, representing the culmination of years of experience in creating robust, scalable, and efficient web applications. Suitable for both small projects and large-scale enterprise applications, `graphql-magic` offers the necessary tools for success.
@@ -32,11 +29,13 @@ npm bootstrap
32
29
  ```
33
30
 
34
31
  Bootstrap the application by generating all the models, migrations and graphql schema:
32
+
35
33
  ```
36
34
  npm run bootstrap
37
35
  ```
38
36
 
39
37
  Run the tests to see if everything works properly:
38
+
40
39
  ```
41
40
  npm test
42
41
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/graphql-magic",
3
- "version": "17.8.2",
3
+ "version": "18.0.0",
4
4
  "description": "",
5
5
  "source": "src/index.ts",
6
6
  "type": "module",