You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
client, err := grammes.DialWithWebSocket(addr)
if err != nil {
log.Fatal(err)
}
defer client.Close()
verts, err := client.AllVertices()
if err != nil {
log.Fatal(err)
}
for _, vert := range verts {
v, err := client.VertexByID(vert.ID())
if err != nil {
log.Fatal(err)
}
fmt.Println(v.ID())
}
Output error:
{"type":"NETWORK_ERROR"},
{"status code":"499"},
{"error":"INVALID REQUEST ARGUMENTS"},
{"original error":"{"requestId":"2087e5b6-bb73-11ea-8e83-8c8590b34803","code":"UnsupportedOperationException","detailedMessage":"Expected an id that is convertible to String but received class java.lang.Integer"}"}
The text was updated successfully, but these errors were encountered:
There is an error when calling VertexByID()
Output error:
The text was updated successfully, but these errors were encountered: