tendant / graphql-clj

A Clojure library that provides GraphQL implementation.
Eclipse Public License 1.0
285 stars 22 forks source link

Extend parser to pass parser CAT #1

Closed aew closed 8 years ago

aew commented 8 years ago

Previously, the following CAT cases were failing:

tendant commented 8 years ago

@aew Thanks for your contribution!

tendant commented 8 years ago

One comment:

"TypeFields*" and "TypeFields ::= TypeField | TypeField TypeFields" is ambiguous.

I might consider to use:

"TypeField*"

or

"TypeFields" and "TypeFields ::= TypeField | TypeField TypeFields"

or

"TypeFields" and "TypeFields ::= TypeField*"

I will make the change later.