Skip to content

NebulaGraph Go

NebulaGraph Go is a Golang client for connecting to and managing the NebulaGraph database.

Prerequisites

You have installed Golang 1.13 or later versions.

Compatibility with NebulaGraph

NebulaGraph version NebulaGraph Go version
3.2.1 3.2.0
2.6.x 2.6.0
2.0.x 2.0.0-GA

Download NebulaGraph Go

  • (Recommended) To install a specific version of NebulaGraph Go, use the Git option --branch to specify the branch. For example, to install v3.2.0, run the following command:

    $ git clone --branch release-3.2 https://github.com/vesoft-inc/nebula-go.git
    
  • To install the daily development version, run the following command to download the source code from the master branch:

    $ git clone https://github.com/vesoft-inc/nebula-go.git
    

Install or update

Run the following command to install or update NebulaGraph Go:

$ go get -u -v github.com/vesoft-inc/nebula-go/v3@v3.2.0

Core of the example code

This section shows the core of the example code. For all the code, see graph_client_basic_example and graph_client_goroutines_example.


Last update: February 1, 2023