query transactionsForWalletByPaymentHash( $walletId: WalletId! $paymentHash: PaymentHash! ) { me { defaultAccount { displayCurrency walletById(walletId: $walletId) { id transactionsByPaymentHash(paymentHash: $paymentHash) { __typename id status direction memo createdAt settlementAmount settlementFee settlementDisplayAmount settlementDisplayFee settlementDisplayCurrency settlementCurrency settlementPrice { base offset } initiationVia { __typename ... on InitiationViaIntraLedger { counterPartyWalletId counterPartyUsername } ... on InitiationViaLn { paymentHash paymentRequest } ... on InitiationViaOnChain { address } } settlementVia { __typename ... on SettlementViaIntraLedger { counterPartyWalletId counterPartyUsername } ... on SettlementViaLn { preImage } ... on SettlementViaOnChain { transactionHash } } } } } } }