INTERFACE
AccountWithContributions
An account that can receive financial contributions
link GraphQL Schema definition
- interface AccountWithContributions {
- # Number of unique financial contributors.
- #
- # Arguments
- # accountType: Type of account
- # (COLLECTIVE/EVENT/ORGANIZATION/INDIVIDUAL)
- AccountType): Int! ( :
- TierCollection! :
- # All the persons and entities that contribute to this account
- #
- # Arguments
- # limit: The number of results to fetch (default 10, max 1000)
- # offset: The offset to use to fetch
- # roles: [Not documented]
- Int, : Int, : [MemberRole]): ContributorCollection! ( :
- # How much platform fees are charged for this account
- Int! :
- # Returns true if a custom contribution to Open Collective can be submitted for
- # contributions made to this account
- Boolean! :
- # Amount of money in cents in the currency of the account currently available to
- # spend
- Int @deprecated( reason: "2020/04/09 - Should not have been introduced. Use stats.balance.value" ) :
- String :
- }