At the moment, default values in arguments are ignored, e.g.: ```graphql type QueryRoot { inc(value: Int = 0): Int! } ``` Querying just `{ inc }` does not pass `0` to the resolvable.