This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-09-13
Channels
- # 100-days-of-code (5)
- # adventofcode (1)
- # announcements (8)
- # beginners (148)
- # boot (17)
- # calva (26)
- # cider (17)
- # cljdoc (2)
- # cljs-dev (55)
- # cljsjs (2)
- # clojure (198)
- # clojure-dev (11)
- # clojure-finland (1)
- # clojure-italy (23)
- # clojure-nl (6)
- # clojure-spec (44)
- # clojure-uk (148)
- # clojurescript (27)
- # clojutre (20)
- # core-logic (21)
- # cursive (12)
- # datascript (10)
- # datomic (33)
- # emacs (11)
- # figwheel-main (49)
- # fulcro (19)
- # graphql (2)
- # off-topic (48)
- # onyx (2)
- # other-languages (53)
- # pedestal (3)
- # reagent (75)
- # reitit (17)
- # rum (1)
- # slack-help (2)
- # specter (2)
- # sql (3)
- # tools-deps (24)
- # unrepl (4)
- # yada (1)
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?
👍 4
@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
or would I have to make another layer 3 subscription to say "i just want the value from this entity"