Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created January 26, 2017 11:49
Show Gist options
  • Save ku1ik/16efbe603414b8b0cbc95c316a77fd03 to your computer and use it in GitHub Desktop.
Save ku1ik/16efbe603414b8b0cbc95c316a77fd03 to your computer and use it in GitHub Desktop.
"Find actors older than Danny Glover"
[:find ?actor
:where
[?d :person/name "Danny Glover"]
[?d :person/born ?danny-age]
[?a :person/name ?actor]
[?a :person/born ?actor-age]
[?m :movie/cast ?a]
[(< ?actor-age ?danny-age)]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment