BallotResult

No description

type BallotResult {
ballot: Ballot!
ballotResultProposals: [BallotResultProposal!]!
budget: Decimal!
budgetAsMoney: Money!
createdAt: ISO8601DateTime!
id: ID!
isRatified: Boolean!
participantsCount: Int!
pbCycle: PBCycle!
ratifiedBy: Party
remainingBudget: Decimal!
remainingBudgetAsMoney: Money!
statistics: ResultsStatistics!
submittedAt: ISO8601DateTime
totalBudgetSpentAsMoney: Money!
updatedAt: ISO8601DateTime!
}

Fields#

ballot (Ballot!)#

ballotResultProposals ([BallotResultProposal!]!)#

List of proposals ratified by this ballot results

budget (Decimal!)#

DEPRECATED Deprecated in favor of `budgetAsMoney`

The budget assigned to the PB Cycle

budgetAsMoney (Money!)#

The budget assigned to the PB Cycle using a Money type to access all budget information.

createdAt (ISO8601DateTime!)#

id (ID!)#

isRatified (Boolean!)#

Indicates if results have been ratified by an admin.

participantsCount (Int!)#

The total number of participants in this PB Cycle

pbCycle (PBCycle!)#

ratifiedBy (Party)#

The party which ratified the ballot results.

remainingBudget (Decimal!)#

DEPRECATED Deprecated in favor of `remainingBudgetAsMoney`

The budget assigned to the PB Cycle

remainingBudgetAsMoney (Money!)#

The budget assigned to the PB Cycle returned as a Money type.

statistics (ResultsStatistics!)#

Totals and sums of all reactions and interactions

submittedAt (ISO8601DateTime)#

totalBudgetSpentAsMoney (Money!)#

The total amount of budget spent in funded proposals. It is equal to total budget minus the remaining budget.

updatedAt (ISO8601DateTime!)#