From 46ad0f954d39eeed01bb7516795fed03b079d999 Mon Sep 17 00:00:00 2001 From: Mahati Shankar <93712176+smahati@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:57:11 +0100 Subject: [PATCH 1/5] fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9da5757..24a754cc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A GraphQL protocol adapter for [SAP Cloud Application Programming Model](https://cap.cloud.sap) Node.js. This adapter generically generates a GraphQL schema for the models of an application and serves an endpoint that allows you to query your services using the GraphQL query language. -_**WARNING:** This package is in an early general availability state. This means that it is general available, with stable APIs unless otherwise indicated, and you can use it for production. However, please note the [current limitations](#limitations) listed below._ +_**WARNING:** This package is in an early general availability state. This means that it is generally available, with stable APIs unless otherwise indicated, and you can use it for production. However, please note the [current limitations](#limitations) listed below._ ## Requirements and Setup @@ -16,7 +16,7 @@ _**WARNING:** This package is in an early general availability state. This means npm add @cap-js/graphql ``` -> This will automatically plugin to `@sap/cds` runtime, enabling the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and register a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. +> This will automatically plug into the `@sap/cds` runtime, enable the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and register a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. 2. Annotate the services you want to serve, e.g. using `@graphql` or `@protocol: 'graphql'`. From cd77c7e55c588201d3ea2abb22d2c5b868eb9d1a Mon Sep 17 00:00:00 2001 From: Mahati Shankar <93712176+smahati@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:00:20 +0100 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24a754cc..e90e6a56 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _**WARNING:** This package is in an early general availability state. This means npm add @cap-js/graphql ``` -> This will automatically plug into the `@sap/cds` runtime, enable the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and register a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. +> This will automatically setup the plugin to the `@sap/cds` runtime, it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. 2. Annotate the services you want to serve, e.g. using `@graphql` or `@protocol: 'graphql'`. From 36c63e57386e66545afee4578fd4ae8d71388f29 Mon Sep 17 00:00:00 2001 From: Mahati Shankar <93712176+smahati@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:10:46 +0100 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e90e6a56..4626dcef 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _**WARNING:** This package is in an early general availability state. This means npm add @cap-js/graphql ``` -> This will automatically setup the plugin to the `@sap/cds` runtime, it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. +> This command will setup the GraphQL plugin with the `@sap/cds` runtime, it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. 2. Annotate the services you want to serve, e.g. using `@graphql` or `@protocol: 'graphql'`. From 5cc349f3f25fd85423ad15334aa78bbea9c9cfda Mon Sep 17 00:00:00 2001 From: Mahati Shankar <93712176+smahati@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:11:50 +0100 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4626dcef..fc6aa9cc 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _**WARNING:** This package is in an early general availability state. This means npm add @cap-js/graphql ``` -> This command will setup the GraphQL plugin with the `@sap/cds` runtime, it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. +> This command will setup the GraphQL plugin with the `@sap/cds` runtime, first it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and then it registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. 2. Annotate the services you want to serve, e.g. using `@graphql` or `@protocol: 'graphql'`. From 8706ae2a5a06f4d8f1201f9eec5bd1aac56acd85 Mon Sep 17 00:00:00 2001 From: Mahati Shankar <93712176+smahati@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:18:17 +0100 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc6aa9cc..3035dec0 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _**WARNING:** This package is in an early general availability state. This means npm add @cap-js/graphql ``` -> This command will setup the GraphQL plugin with the `@sap/cds` runtime, first it enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js, and then it registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. +> This command will set up the GraphQL plug-in with the `@sap/cds` runtime. It enables the new [middlewares architecture](https://cap.cloud.sap/docs/node.js/middlewares) in Node.js and registers a GraphQL endpoint at `/graphql` serving all CRUD requests for the application services found in your model. 2. Annotate the services you want to serve, e.g. using `@graphql` or `@protocol: 'graphql'`.