PersonalAccount
Personal account fields for when viewer is in continuity
type PersonalAccount {
amountRaised(
currency: Currency
): DollarFormats!
avatarImage: String
continuityPrevCampaign: Campaign
continuityReason: ContinuityReasonEnum
id: ID!
isAccessible: Boolean!
name: String
payments(
first: Int
after: String
last: Int
before: String
orderBy: OrderByCreatedAt
): PaymentConnection!
transferrableFunds(
currency: Currency
): TransferrableFunds!
}
Fields
PersonalAccount.amountRaised ● DollarFormats! non-null object
The total funds earned for this user's personal team in their default currency.
PersonalAccount.amountRaised.currency●CurrencyenumTo look up funds earned for a specific currency. When left blank the user's default currency is used.
PersonalAccount.avatarImage ● String scalar
The url of the user's avatar
PersonalAccount.continuityPrevCampaign ● Campaign object
The campaign the viewer was on prior to entering continuity
PersonalAccount.continuityReason ● ContinuityReasonEnum enum
Reason the viewer is in continuity
PersonalAccount.id ● ID! non-null scalar
User's ID
PersonalAccount.isAccessible ● Boolean! non-null scalar
If viewer should be able to use personal account
PersonalAccount.name ● String scalar
User's full name
PersonalAccount.payments ● PaymentConnection! non-null object
View my personal payments
PersonalAccount.payments.first●IntscalarReturns the first n elements from the list.
PersonalAccount.payments.after ● String scalar
Returns the elements in the list that come after the specified cursor.
PersonalAccount.payments.last ● Int scalar
Returns the last n elements from the list.
PersonalAccount.payments.before ● String scalar
Returns the elements in the list that come before the specified cursor.
PersonalAccount.payments.orderBy ● OrderByCreatedAt enum
PersonalAccount.transferrableFunds ● TransferrableFunds! non-null object
Transferrable funds
PersonalAccount.transferrableFunds.currency●CurrencyenumTo look up transferrable funds for a specific currency. When left blank the user's default currency is used.
Member of
Viewer object