Hi, A third-party developer creates a web portal integrated with VB NXT. When they run the following query, with filter on processingMethod7 and changeDateTime: query read_product { useCompany (no:4313304) {product (filter: {_and : [ {processingMethod7:{_eq: 1}}, {changedDateTime:{_gte:"2023-01-18T00:13:00"}} ] } sortOrder:{processingMethod7:ASC} ) { items { productNo showOnWeb changedDateTime processingMethod7 productNo } } } } they get in return data with processingMethod7=0 which should not be displayed. { "productNo": "2990", "showOnWeb": 0, "changedDateTime": "2023-01-18T07:57:00", "processingMethod7": 0, "changedTime": 757 }, { "productNo": "2991", "showOnWeb": 0, "changedDateTime": "2023-01-18T07:57:00", "processingMethod7": 0, "changedTime": 757 }, { "productNo": "3000", "showOnWeb": 1, "changedDateTime": "2023-01-20T12:16:00", "processingMethod7": 1, "changedTime": 1216 }, { "productNo": "3002", "showOnWeb": 1, "changedDateTime": "2023-01-20T12:16:00", "processingMethod7": 1, "changedTime": 1216 }, Does anyone know why return data that should not be displayed?
... View more