Skip to content

TGST is a Smalltalk package to interface with Gremlin servers

Notifications You must be signed in to change notification settings

rwilcox/TinkerpopGremlinSmalltalk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About TinkerGremlinSmalltalk

This repository contains the very basics around getting Smalltalk to talk to a graph database (via Gremlin).

Example Time

|a b res|

a := TinkerpopHTTPInterface new.
b := TinkerpopGremlinResultBaseRepository  new.

a connectionURL: 'http://localhost:8182'.

res := a executeGremlin: 'g.V().hasLabel(''author'')'.

b deserialize: res.

will likely return you a Vertex Smalltalk object, assuming such a vertex exists in your data store.

About

TGST is a Smalltalk package to interface with Gremlin servers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published