This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-05-26
Channels
- # ai (1)
- # announcements (7)
- # babashka (2)
- # beginners (23)
- # biff (3)
- # calva (1)
- # chlorine-clover (3)
- # cider (2)
- # clj-kondo (12)
- # clojure (25)
- # clojure-brasil (4)
- # clojure-europe (33)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-uk (1)
- # clojurescript (30)
- # clr (6)
- # consulting (1)
- # cursive (14)
- # data-science (1)
- # datalevin (4)
- # datomic (3)
- # events (4)
- # graphql (1)
- # gratitude (2)
- # hoplon (10)
- # inf-clojure (3)
- # interceptors (1)
- # introduce-yourself (1)
- # off-topic (13)
- # pathom (2)
- # pedestal (12)
- # rdf (14)
- # releases (6)
- # sci (17)
- # shadow-cljs (12)
Hi all, I've got a working graphql schema I'm trying to run an introspection query against and it's failing because queryType
is null. Any tips for how to debug this would be appreciated.
(lacinia/execute schema "{ __schema { queryType { name }}}" nil nil)
;; =>
{:data {:__schema nil},
:errors
({:message "Non-nullable field was null.",
:locations [{:line 1, :column 14}],
:path [:__schema :queryType]})}
Note that this schema is parsed from a graphql schema definition language file, but I tested a smaller demo schema parsed from SDL and I was able to introspect without issues.