Hi, I tried these two but but both giving me null query GetpaymentInfoFromCustomerTransaction { useCompany(no: 3867961) { customerTransaction( filter: { voucherType:{_eq:11} paidStatus:{_in:[3,4]} } ) { totalCount pageInfo { hasNextPage hasPreviousPage startCursor endCursor } items { customerNo orderNo invoiceNo voucherNo voucherType amountDomestic outstandingAmountDomestic cid dueDate crossReference paidStatus paidLast createdDateTime changedDateTime voucherDate } } } } ---------------------------------------------------------- query GetPaymentLines { useCompany(no: 3867961) { paymentLine(first: 1) { items { paymentNo lineNo currency : joinup_Currency { isoCode } supplier : joinup_Associate_via_Supplier { bankAccount country : joinup_Country { isoCode } } } } } }
... View more