tendant / graphql-clj

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

The '!' doesn't work in the Input #61

Open qwwwpp opened 4 years ago

qwwwpp commented 4 years ago

The library will not throw exception if I pass null value to the required field. For example, if I define

input TaskInput {
  name: String!,
}

I can set name to null or even don't provide this field at all.