Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc - adds the JS HTTP Client and links to repos for the supported versions #4735

Merged
merged 6 commits into from Mar 5, 2020
39 changes: 28 additions & 11 deletions wiki/content/clients/index.md
Expand Up @@ -68,6 +68,8 @@ go get -u -v github.com/dgraph-io/dgo/v2
The full [GoDoc](https://godoc.org/github.com/dgraph-io/dgo) contains
documentation for the client API along with examples showing how to use it.

More details on the supported versions can be found at [this link](https://github.com/dgraph-io/dgo#supported-versions).

### Create the client

To create a client, dial a connection to Dgraph's external gRPC port (typically
Expand Down Expand Up @@ -440,10 +442,10 @@ fmt.Println(string(resp.Json))

## Java

The official Java client [can be found here](https://github.com/dgraph-io/dgraph4j)
and it fully supports Dgraph v1.0.x. Follow the instructions in the
[README](https://github.com/dgraph-io/dgraph4j#readme)
to get it up and running.
The official Java client [can be found here](https://github.com/dgraph-io/dgraph4j).
Follow the instructions in the [README](https://github.com/dgraph-io/dgraph4j#readme) to get it up and running.

More details on the supported versions can be found at [this link](https://github.com/dgraph-io/dgraph4j#supported-versions).

We also have a [DgraphJavaSample] project, which contains an end-to-end
working example of how to use the Java client.
Expand All @@ -452,21 +454,36 @@ working example of how to use the Java client.

## JavaScript

The official JavaScript client [can be found here](https://github.com/dgraph-io/dgraph-js)
and it fully supports Dgraph v1.0.x. Follow the instructions in the
[README](https://github.com/dgraph-io/dgraph-js#readme) to get it up and running.
### gRPC

The official JavaScript gRPC client [can be found here](https://github.com/dgraph-io/dgraph-js).
Follow the instructions in the [README](https://github.com/dgraph-io/dgraph-js#readme) to get it up and running.

More details on the supported versions can be found at [this link](https://github.com/dgraph-io/dgraph-js#supported-versions).

We also have a [simple example](https://github.com/dgraph-io/dgraph-js/tree/master/examples/simple)
project, which contains an end-to-end working example of how to use the JavaScript client,
project, which contains an end-to-end working example of how to use the JavaScript gRPC client,
for Node.js >= v6.

### HTTP

The official JavaScript HTTP client [can be found here](https://github.com/dgraph-io/dgraph-js-http).
Follow the instructions in the [README](https://github.com/dgraph-io/dgraph-js-http#readme) to get it up and running.

More details on the supported versions can be found at [this link](https://github.com/dgraph-io/dgraph-js-http#supported-versions).

We also have a [simple example](https://github.com/dgraph-io/dgraph-js-http/tree/master/examples/simple)
project, which contains an end-to-end working example of how to use the JavaScript HTTP client,
for Node.js >= v6.

## Python

The official Python client [can be found here](https://github.com/dgraph-io/pydgraph)
and it fully supports Dgraph v1.0.x and Python versions >= 2.7 and >= 3.5. Follow the
instructions in the [README](https://github.com/dgraph-io/pydgraph#readme) to get it
The official Python client [can be found here](https://github.com/dgraph-io/pydgraph).
Follow the instructions in the [README](https://github.com/dgraph-io/pydgraph#readme) to get it
up and running.

More details on the supported versions can be found at [this link](https://github.com/dgraph-io/pydgraph#supported-versions).

We also have a [simple example](https://github.com/dgraph-io/pydgraph/tree/master/examples/simple)
project, which contains an end-to-end working example of how to use the Python client.

Expand Down