关于TinkerGremlinSmalltalk 该存储库包含有关使Smalltalk与图形数据库对话(通过Gremlin)的基本知识。 时间示例 | a b res | a := TinkerpopHTTPInterface new . b := TinkerpopGremlinResultBaseRepository new . a connectionURL: ' http://localhost:8182 ' . res := a executeGremlin: ' g.V().hasLabel( ' ' author ' ' ) ' . b deserialize: res. 假设您的数据存储中存在这样的一个顶点,则可能会返回一个Vertex Smalltalk对象。