OBJECT
Fund
This represents an Project account
link GraphQL Schema definition
- type Fund implements Account, AccountWithHost, AccountWithContributions {
- String :
- Int :
- # The slug identifying the account (ie: babel)
- String :
- AccountType :
- String :
- String :
- String :
- String] : [
- String :
- String :
- String :
- String :
- String :
- # Defines if the contributors wants to be incognito (name not displayed)
- Boolean! :
- # Arguments
- # height: [Not documented]
- # format: [Not documented]
- Int, : ImageFormat): String ( :
- # Arguments
- # height: [Not documented]
- # format: [Not documented]
- Int, : ImageFormat): String ( :
- # The time of creation
- DateTime :
- DateTime :
- # Returns whether this account is archived
- Boolean :
- # Returns whether it's active: can accept financial contributions and pay
- # expenses.
- Boolean! :
- # Returns whether the account is setup to Host collectives.
- Boolean :
- # Returns true if the remote user is an admin of this account
- Boolean! :
- # Get all members (admins, members, backers, followers)
- #
- # Arguments
- # limit: [Not documented]
- # offset: [Not documented]
- # role: [Not documented]
- # accountType: [Not documented]
- Int, : Int, : [MemberRole], : [AccountType]): MemberCollection ( :
- # Arguments
- # limit: [Not documented]
- # offset: [Not documented]
- # role: [Not documented]
- # accountType: [Not documented]
- # account: [Not documented]
- # isHostAccount: Filter on whether the account is a host or not
- # isApproved: Filter on (un)approved collectives
- # isArchived: Filter on archived collectives
- # includeIncognito: Wether incognito profiles should be included
- # in the result. Only works if requesting user is an admin of the account.
- # searchTerm: A term to search membership. Searches in collective
- # tags, name, slug, members description and role.
- # hostFeesStructure: Filters on the Host fees structure applied
- # to this account
- # orderBy: Order of the results
- (
- Int, :
- Int, :
- MemberRole], : [
- AccountType], : [
- AccountReferenceInput, :
- Boolean, :
- Boolean, :
- Boolean, :
- Boolean, :
- String, :
- HostFeeStructure, :
- ChronologicalOrderInput! :
- ): MemberOfCollection
- # Arguments
- # type: [Not documented]
- # limit: [Not documented]
- # offset: [Not documented]
- # orderBy: [Not documented]
- # includeIncognitoTransactions: If the account is a user and this
- # field is true, contributions from the incognito profile will be included too
- # (admins only)
- (
- TransactionType, :
- Int, :
- Int, :
- ChronologicalOrderInput, :
- Boolean! :
- ): TransactionCollection!
- # Arguments
- # limit: [Not documented]
- # offset: [Not documented]
- # filter: [Not documented]
- # status: [Not documented]
- # tierSlug: [Not documented]
- # onlySubscriptions: Only returns orders that have an
- # subscription (monthly/yearly)
- # orderBy: [Not documented]
- (
- Int, :
- Int, :
- AccountOrdersFilter, :
- OrderStatus], : [
- String, :
- Boolean, :
- ChronologicalOrderInput :
- ): OrderCollection!
- JSON! :
- # Arguments
- # limit: [Not documented]
- # offset: [Not documented]
- # tag: Only return conversations matching this tag
- Int, : Int, : String): ConversationCollection ( :
- # Returns conversation's tags for collective sorted by popularity
- #
- # Arguments
- # limit: [Not documented]
- Int): [TagStat] ( :
- # Returns expense tags for collective sorted by popularity
- #
- # Arguments
- # limit: [Not documented]
- Int): [TagStat] ( :
- TransferWise :
- # The list of payout methods that this collective can use to get paid
- PayoutMethod] : [
- # The list of payment methods that this collective can use to pay for Orders
- #
- # Arguments
- # types: [Not documented]
- # includeExpired: Wether to include expired payment methods.
- # Payment methods expired since more than 6 months will never be returned.
- String], : Boolean): [PaymentMethod]! ( : [
- # The list of connected accounts (Stripe, Twitter, etc ...)
- ConnectedAccount] : [
- # The address associated to this account. This field is always public for
- # collectives and events.
- Location :
- String]! : [
- AccountStats :
- # Arguments
- # limit: The number of results to fetch (default 10, max 1000)
- # offset: The offset to use to fetch
- # onlyPublishedUpdates: [Not documented]
- Int, : Int, : Boolean): UpdateCollection! ( :
- # Describes the features enabled and available for this collective
- CollectiveFeatures! :
- # Returns the Fiscal Host
- Host :
- # Describe how the host charges the collective
- HostFeeStructure :
- # Fees percentage that the host takes for this collective
- Float :
- # How much platform fees are charged for this account
- Int! :
- # Date of approval by the Fiscal Host.
- DateTime :
- # Returns whether it's approved by the Fiscal Host
- Boolean! :
- # 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! ( :
- # 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 :
- }