Hello! When trying to coerce query parameters using malli, i'm receiving the following error:
{
"value": {
"name": "aaaa",
"lastname": "bbbb",
"age": "123"
},
"type": "reitit.coercion/request-coercion",
"coercion": "malli",
"in": [
"request",
"query-params"
],
"humanized": {
"name": [
"missing required key"
],
"lastname": [
"missing required key"
],
"age": [
"missing required key"
]
}
}
my malli schema:
(def query [:map
["name" :string]
["lastname" :string]
["age" :int]])