Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim authored Mar 11, 2024
1 parent 18b32fb commit 2b91f47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ Get the status of the server.

#### Example usage:

** With `fetch` in JavaScript: **
With `fetch` in JavaScript:

```javascript
fetch("http://localhost:8000")
.then((response) => response.json())
.then((data) => console.log(data));
```

** With `curl` in the terminal: **
With `curl` in the terminal:

```bash
curl http://localhost:8000
Expand All @@ -136,15 +136,15 @@ Get the schema of the database.

#### Example usage:

** With `fetch` in JavaScript: **
With `fetch` in JavaScript:

```javascript
fetch("http://localhost:8000/schema")
.then((response) => response.json())
.then((data) => console.log(data));
```

** With `curl` in the terminal: **
With `curl` in the terminal:

```bash
curl http://localhost:8000/schema
Expand Down Expand Up @@ -220,7 +220,7 @@ Execute a Cypher query and get the result. The request body should be a JSON obj

#### Example usage:

** With `fetch` in JavaScript: **
With `fetch` in JavaScript:

```javascript
fetch("http://localhost:8000/cypher", {
Expand All @@ -239,7 +239,7 @@ fetch("http://localhost:8000/cypher", {
.then((data) => console.log(data));
```

** With `curl` in the terminal: **
With `curl` in the terminal:

```bash
curl -X POST\
Expand Down

0 comments on commit 2b91f47

Please sign in to comment.