Skip to content

Commit 07cfd53

Browse files
Apply suggestions from code review
Co-authored-by: Lidia Zuin <102308961+lidiazuin@users.noreply.github.com>
1 parent 1af7bf9 commit 07cfd53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/ROOT/pages/ogm/installation.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ npm install @neo4j/graphql-ogm graphql neo4j-driver
1818

1919
== Usage examples
2020

21-
Here are some examples of how you can take advantage of the OGM.
21+
Here are some examples of how you can use the OGM.
2222

2323
[[ogm-examples-custom-resolvers]]
2424
=== Custom Resolvers
@@ -225,7 +225,7 @@ You can execute the `signUp` mutation against the GraphQL API to sign up, but if
225225
This example demonstrates how you can use the OGM without exposing a Neo4j GraphQL API endpoint.
226226
It starts an https://expressjs.com/[Express] server and uses the OGM to interact with the Neo4j GraphQL Library, exposed via a REST endpoint.
227227

228-
Execute the following to create an example application directory and create a new project:
228+
Execute the following to create an example application directory and a new project:
229229

230230
[source, bash, indent=0]
231231
----
@@ -242,7 +242,7 @@ Install the dependencies:
242242
npm install @neo4j/graphql-ogm graphql neo4j-driver express
243243
----
244244

245-
Assuming a running Neo4j database at "bolt://localhost:7687" with username "username" and password "password", in your empty `index.js` file, add the following code:
245+
Assuming a running Neo4j database at "neo4j://localhost:7687" with username "username" and password "password", in your empty `index.js` file, add the following code:
246246

247247
[source, javascript, indent=0]
248248
----
@@ -312,4 +312,4 @@ You should see the following output:
312312
Example app listening at http://localhost:4000/users
313313
----
314314

315-
The REST API should now be available at `http://localhost:4000`, with a single working route `/users`.
315+
The REST API should now be available at `http://localhost:4000`, with a single working route `/users`.

0 commit comments

Comments
 (0)