cayleygraph / cayleygraph/go-client
How to use this go-client
Open
- Dominant language
- Go
- Stars
- 8
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
I tried following the README
`go get -u github.com/cayleygraph/go-client with code`
```
package main
import (
"context"
"fmt"
"github.com/cayleygraph/go-client"
)
func main() {
c := client.NewAPIClient(client.NewConfiguration())
result, _, _ := c.QueriesApi.Query(context.TODO(), "gizmo", "g.V().getLimit(10)")
fmt.Printf("%v", result.Result)
}
```
It throws out error and the code breaks at `c := client.NewAPIClient(client.NewConfiguration())`
is there anything else needed?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.