Hi is it possible to filter on fields that you don't want to include in the output ? example: query
{
useCompany(no: 9999)
{
queryResult : orderDocument
(
filter:
{
_and :
[
{requiredDeliveryDate : {_gt:20230801}},
{picListNo :{_in:[1,3,6]}}
]
}
)
{
totalCount
items
{
orderNo
orgUnit3
customerNo
deliveryAddress1
deliveryAddress2
deliveryAddress3
deliveryAddress4
}
}
}
} In the above example I am not selecting the requiredDeliveryDate or the picListNo in the output, can I still filter on these fields ?
... View more