This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-21
Channels
- # announcements (11)
- # architecture (8)
- # aws (7)
- # babashka (1)
- # beginners (55)
- # calva (52)
- # cider (4)
- # clj-kondo (5)
- # clojure (12)
- # clojure-europe (7)
- # clojure-uk (3)
- # clojurescript (40)
- # clr (1)
- # conjure (5)
- # data-oriented-programming (7)
- # datomic (8)
- # emacs (3)
- # events (1)
- # graphql (2)
- # honeysql (5)
- # lsp (7)
- # missionary (24)
- # nbb (10)
- # off-topic (12)
- # pathom (5)
- # reagent (9)
- # reitit (4)
- # schema (1)
- # sci (9)
- # shadow-cljs (2)
- # specter (6)
- # tools-deps (4)
- # xtdb (13)
In Pathom 2. why does (_parser {} [:no-such-thing :com.wsscode.pathom.core/errors])
return {}
and not info about not having found :no-such-thing
? Am I missing some plugin / query / ... ? 🙏
I see I do have p/error-handler-plugin
but also (p/post-process-parser-plugin p/elide-not-found) (p/post-process-parser-plugin elide-reader-errors)
. That would likely explain why I see no errors. Still, why does Pathom return {}
and not nil
?
yes, the plugin elide-not-found is removing the info, if you take that out you will start seeing a not found value instead
👍 1
So it is by design that Pathom does not return nil here?