Created
August 21, 2015 06:09
-
-
Save atroche/8f095775bd295a5a7f8c to your computer and use it in GitHub Desktop.
This file contains 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
(d/q '[:find ?e :where [?e :employee/name]] | |
@conn) | |
=> #{[17592186045449] [3] [17592186045447] [17592186045443] [17592186045445]} | |
(d/q '[:find ?e | |
:where [?e :employee/name] [?e :employee/new]] | |
@conn) | |
=> #{[3]} | |
(d/q '[:find ?e | |
:where [?e :employee/name] (not [?e :employee/new])] | |
@conn) | |
ExceptionInfo #<Error: compare on non-nil objects of different types> clojure.core/ex-info (core.clj:4593) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment