(graphql-two-step q-str)
ANTLR graphql parser croaks if reserved words are used in selectionSet or variableDefinition: 'query', 'mutation', 'subscription', 'fragment', 'on'
As a workaround we can split parsing into two steps. The downside is that this is slower. So we try to parse queries in single pass first and if it fails we fall back to this.
ANTLR graphql parser croaks if reserved words are used in selectionSet or variableDefinition: 'query', 'mutation', 'subscription', 'fragment', 'on' As a workaround we can split parsing into two steps. The downside is that this is slower. So we try to parse queries in single pass first and if it fails we fall back to this.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close