graphql-clj
graphql-clj copied to clipboard
The '!' doesn't work in the Input
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.