type MoneyhubAccountRevenue{
    currencyCode: String
    grossRevenuePayeeCurrency: Float
    netRevenuePayeeCurrency: Float
    sinceStatementPeriodId: ID
    subaccountRevenue: Float
}

extend type Query{ 
    moneyhubAllTimeAccountRevenue(
        accountId: ID!
        artistId: ID
        statementPeriod: ID!
        subaccountId: ID
        isOpenStatementPeriod: Boolean
        isSubaccount: Boolean
    ): MoneyhubAccountRevenue!
}
