The Ultipa Go driver is the official library to interact with Ultipa graph databases through a Go application.
Supported Go Versions
The Ultipa Go driver requires Go 1.13 or higher.
Installing the Driver
To get started, create a local Go module project and add the Ultipa Go driver to your dependencies using one of the following commands:
// To install the latest version
go get github.com/ultipa/ultipa-go-sdk
// To install a specific version (e.g., v1.5.1)
go get github.com/ultipa/[email protected]
Make sure your project is initialized with
go mod init
before running the above commands.