Description Usage Arguments Value Examples
This function creates Datomic pull expressions. The following rules apply when converting R expressions to Datomic pull expressions:
Clojure vector literals (i.e. []
) are represented
as c()
in R
Clojure map literalas (i.e. {key val}
) are represented
as {key = val}
in R
Back references are specified by pre-prending a .
to the
attribute name (instead of a _
). E.g. the Clojure variant/_gene
becomes variant/.gene
The wildcard pattern *
is represented as .
in R
Strings containing the /
character are assumed to represent
qualified symbol names and are converted by pre-prending the :
character.
E.g. the Clojure :variant/gene
becomes variant/gene
1 |
... |
This function takes exactly 2 arguments which must be specified in the following order (named arguments are not supported, the arguments are matched positionally)
|
Returns a data structure representing the pull expression, suitable
for inclusion in the find
clause of a query
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.