Sha256: abd640a45933f714e89c72d8e7b44dd607ea81a1263b917fc3265e767a6ea807
Contents?: true
Size: 1.2 KB
Versions: 9
Compression:
Stored size: 1.2 KB
Contents
# frozen_string_literal: true module Graphql class Account BALANCE = '{viewer {savingsAccount {currentSavingsBalance {netAmount}}}}' FEED = <<~GRAPHQL { viewer { savingsAccount { id feed { id __typename title detail postDate ... on TransferInEvent { amount originAccount { name } } ... on TransferOutEvent { amount destinationAccount { name } } ... on TransferOutReversalEvent { amount } ... on BillPaymentEvent { amount } ... on DebitPurchaseEvent { amount } ... on BarcodePaymentEvent { amount } ... on DebitWithdrawalFeeEvent { amount } ... on DebitWithdrawalEvent { amount } } } } } GRAPHQL end end
Version data entries
9 entries across 9 versions & 1 rubygems