--
You received this message because you are subscribed to the Google Groups "Aurelius" group.
To unsubscribe from this group and stop receiving emails from it, send an email to aureliusgraph...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/aureliusgraphs/50464a84-e92d-41a7-9462-7dafd0298a28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
That said, expect that Titan 1.0 (i.e. the final GA release) will not be backwards compatible.
To view this discussion on the web visit https://groups.google.com/d/msgid/aureliusgraphs/35da0eaf-8991-44a7-9178-86f7b1f30e69%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/aureliusgraphs/1785a59a-ad26-4880-b62a-e8af984fb33d%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/aureliusgraphs/559DC08E.8080108%40opendns.com.
class SimpleExample { static { Gremlin.load() } public List exampleMethod() { Graph g = TinkerGraphFactory.createTinkerGraph() def results = [] g.v(1).out('knows').fill(results) return results } }
Will be possible in TP3 and how can I read TitanGraph : Is it possilbe to say Graph g = TitanGraph(myGraph)
Thank you very much in advance,
Ivo
class SimpleExample {
static {
Gremlin.load()
}
public List exampleMethod() {
Graph g = TitanFactory.open(...)
def results = []
g.v(1).out('knows').fill(results)
return results
}
}To view this discussion on the web visit https://groups.google.com/d/msgid/aureliusgraphs/e8dcf9aa-f35c-4f98-9141-1fc15c1e0fb7%40googlegroups.com.