ProposalVote
A single member's vote on a proposal — for, against, or abstain.
type ProposalVote implements Node {
nodeId: ID!
proposalId: UUID!
voterId: UUID!
spaceId: UUID!
vote: VoteOption!
createdAt: String!
createdAtBlock: String!
proposal: Proposal
space: Space
}
Fields
ProposalVote.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
ProposalVote.proposalId ● UUID! non-null scalar
ProposalVote.voterId ● UUID! non-null scalar
ProposalVote.spaceId ● UUID! non-null scalar
ProposalVote.vote ● VoteOption! non-null enum
ProposalVote.createdAt ● String! non-null scalar
ProposalVote.createdAtBlock ● String! non-null scalar
ProposalVote.proposal ● Proposal object
Reads a single Proposal that is related to this ProposalVote.
ProposalVote.space ● Space object
Reads a single Space that is related to this ProposalVote.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
proposalVote query ● proposalVoteByNodeId query ● proposalVotes query
Member Of
Proposal object ● ProposalVotesConnection object ● ProposalVotesEdge object ● Space object