Skip to content

Instantly share code, notes, and snippets.

@AlBaker
Last active December 10, 2015 15:19
Show Gist options
  • Save AlBaker/4453865 to your computer and use it in GitHub Desktop.
Save AlBaker/4453865 to your computer and use it in GitHub Desktop.
Stardog Groovy DSL
def query = "select ?x ?y ?z WHERE { ?x ?y ?z } LIMIT 2"
builder.html {
head {
title "Report"
}
body {
stardog.each query, {
p "x: " + x
p "y: " + y
p "z: " + z
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment