Yes, what you put in the filter does not affect the data you want to retrieve. In fact you can have the filter as a parameter and still fetch the data you are after. query findDocuments($cid: Int!, $filter: FilterExpression_OrderDocument) {
useCompany(no: $cid) {
queryResult: orderDocument(filter: $filter) {
totalCount
items {
orderNo
orgUnit3
customerNo
deliveryAddress1
deliveryAddress2
deliveryAddress3
deliveryAddress4
}
}
}
} And then pass the following params: {
"cid":99999,
"filter":{
"_and":[
{
"requiredDeliveryDate":{
"_gt":20230801
}
},
{
"picListNo":{
"_in":[
1,
3,
6
]
}
}
]
}
}
... View more