type AbacusAccountTaxInfoHistory {
    accountId: ID
    accountTaxInfoHistoryId: ID
    accountTaxInfoId: ID
    certificateOfResidenceExpirationDate: Date
    countryOfTaxResidence: String
    createdAt: Date
    isResidentOfSpanishIslands: Boolean
    isSbaSigned: Boolean
    isVatExempt: Boolean
    isWhtApplicable: Boolean!
    lastModified: Date
    taxEmploymentType: String
}

extend type Query {
    abacusAccountTaxInfoHistory(
        accountId: ID!
    ): [AbacusAccountTaxInfoHistory]
}
