can anyone tell me what this .
is for in the following re-posh query?
{:type :query
:query '[:find ?id .
:where [?id :app/type :type/account]]}
I'm still trying to figure out this business. is it the same meaning in datomic?
@idiomancy It's about #datascript that flows #datomic https://docs.datomic.com/on-prem/query.html#find-specifications
:find ?e
=> #{[e1] [e2] ...}
:find [?e]
=> [e1]
:find [?e ...]
=> [e1 e2 ...]
:find ?e .
=> e1
THANK YOU! That's exactly what I needed!
you're the man, @souenzzo!
is there any way to apply find specifications for pull patterns?
or would I have to make another layer 3 subscription to say "i just want the value from this entity"
or, more importantly, is there any way in re-posh to materialize a view from a pulled value?
in other words, is there some way I can register a subscription that uses a pulled entity as its input?