Skip to content

Commit

Permalink
update explorer test graphl schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Nov 24, 2020
1 parent a292b34 commit bb09396
Showing 1 changed file with 19 additions and 1 deletion.
Expand Up @@ -104,6 +104,7 @@ type PageInfo {

enum PayloadType {
PUBLIC
PRIVATE
}

type Pool {
Expand Down Expand Up @@ -371,14 +372,31 @@ type VoteProposalStatus {
proposalId: ExternalProposalId!
options: VoteOptionRange!
tally: TallyStatus
votes: [VoteStatus!]!
votes(first: Int, last: Int, before: IndexCursor, after: IndexCursor): VoteStatusConnection!
}

type VoteStatus {
address: Address!
payload: VotePayloadStatus!
}

type VoteStatusConnection {
pageInfo: PageInfo!
edges: [VoteStatusEdge!]!

"""
A count of the total number of objects in this connection, ignoring pagination.
"""
totalCount: VoteStatusCount!
}

scalar VoteStatusCount

type VoteStatusEdge {
node: VoteStatus!
cursor: IndexCursor!
}

type VoteTally {
votePlan: VotePlanId!
}
Expand Down

0 comments on commit bb09396

Please sign in to comment.