Skip to content

Client API and data importer of Nebula Graph in Java

Notifications You must be signed in to change notification settings

wfystx/nebula-java

 
 

Repository files navigation

star this repo fork this repo

nebula-java

This guide provides an overview of options for connecting to Nebula Graph for Java developer.

Prerequisites

When developing with this Java driver, please use Java 8 . Depending on the version of Nebula Graph that you are connecting to, you will have to use a different version of this client.

Nebula version Nebula Java version
1.0.0-rc2 1.0.0-rc2

Nebula Graph Java Driver

When using Maven, add this to your pom.xml file:

<dependency>
    <groupId>com.vesoft</groupId>
    <artifactId>client</artifactId>
    <version>${VERSION}</version>
</dependency>

change ${VERSION} here. For more versions, please refer to releases.

Graph Client Example

Connect to the graphd:

GraphClient client = new GraphClientImpl("127.0.0.1", 3699);
client.connect("user", "password");

Use a space:

int code = client.switchSpace("space_test");

Execute a query:

int code = client.execute("CREATE TAG course(name string, credits int);");

If query executes seccuessfully, 0 will be returned. For a more complete example, refer to Graph Java client example.

About

Client API and data importer of Nebula Graph in Java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%