1
我遇到了一個問題,我的模型是使用boolean
類型的屬性定義的,但在某些時候它被解釋爲字符串。水線無法兌換模型類型
例如,對於一個模型,看起來像這樣:
{
attributes: {
id: 'string'
boolean_thing: {type: 'boolean', columnName: 'BooleanThing'},
}
}
給定這樣的請求時:
/api/foo?boolean_thing=false
將導致where
標準被傳遞給適配器看起來像這樣:
{
where: {
BooleanThing: 'false'
},
limit: 30,
skip: 0
}
我目前正在運行[email protected]。有誰知道這是我的錯誤還是配置錯誤?
是這個問題的回答? –