Created
November 4, 2011 14:47
-
-
Save okram/1339488 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Graph graph = ShareSavParser.generateShareSavGraph(new TransactionalTinkerGraph()); | |
def itty = ShareSavTraversals.evaluateQuery(graph, "Marco Sena", "HOSPITAL NACIONAL", 1222844400000l, 1223103600000l); | |
while (itty.hasNext()) { | |
println("here: " + itty.next()); | |
} | |
itty = ShareSavTraversals.evaluateQuery(graph, "Marco Sena", "HOSPITAL NACIONAL", -1l, -1l); | |
while (itty.hasNext()) { | |
println("here2: " + itty.next()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment