UNPKG

@accounter/server

Version:

The test suite is split into three Vitest projects for efficiency and isolation:

72 lines (68 loc) 1.94 kB
import { gql } from 'graphql-modules'; export default gql` " represent a single bank account" type BankFinancialAccount implements FinancialAccount { id: UUID! name: String! number: String! type: FinancialAccountType! privateOrBusiness: PrivateOrBusinessType! accountTaxCategories: [CurrencyTaxCategory!]! " the external identifier of the bank account " accountNumber: String! bankNumber: Int! branchNumber: Int! iban: String extendedBankNumber: Int partyPreferredIndication: Int partyAccountInvolvementCode: Int accountDealDate: Int accountUpdateDate: Int metegDoarNet: Int kodHarshaatPeilut: Int accountClosingReasonCode: Int accountAgreementOpeningDate: Int serviceAuthorizationDesc: String branchTypeCode: Int mymailEntitlementSwitch: Int productLabel: String } " input type for creating a bank account " input BankAccountInsertInput { bankNumber: Int! branchNumber: Int! iban: String extendedBankNumber: Int partyPreferredIndication: Int partyAccountInvolvementCode: Int accountDealDate: Int accountUpdateDate: Int metegDoarNet: Int kodHarshaatPeilut: Int accountClosingReasonCode: Int accountAgreementOpeningDate: Int serviceAuthorizationDesc: String branchTypeCode: Int mymailEntitlementSwitch: Int productLabel: String } " input type for updating a bank account " input BankAccountUpdateInput { bankNumber: Int branchNumber: Int iban: String extendedBankNumber: Int partyPreferredIndication: Int partyAccountInvolvementCode: Int accountDealDate: Int accountUpdateDate: Int metegDoarNet: Int kodHarshaatPeilut: Int accountClosingReasonCode: Int accountAgreementOpeningDate: Int serviceAuthorizationDesc: String branchTypeCode: Int mymailEntitlementSwitch: Int productLabel: String } `;