There seems to have been a breaking change in the filter logic recently, the following query with an empty filter previously returned everything as if the filter was not present, but now suddenly returns nothing: query example($cid : Int) {
useCompany(no: $cid) {
product(first: 10, filter:{ }) {
items {
productNo
}
}
}
} If I strip the whole filter part away it works as expected and everything is returned: query example($cid : Int) {
useCompany(no: $cid) {
product(first: 10) {
items {
productNo
}
}
}
} Is this a bug? Or will the new logic remain this way?
... View more