a57d484496
* feat: add new generator with config * feat: split off gql queries to separate files for the new generator * fix: delete dummy schema * feat: add generated queries with new codegen * fix: regenerate from scratch and remove duplicates * fix: libs and app gen folders * fix: remove more duplicate queries * fix: add generated files to be ignored by the formatter * fix: format * fix: generated imports * fix: lint * fix: accounts export * fix: more imports * fix: add type alias for new type system and regenerate * fix: format * fix: delete leftover file from merge
63 lines
976 B
GraphQL
63 lines
976 B
GraphQL
query Staking($partyId: ID!) {
|
|
party(id: $partyId) {
|
|
id
|
|
stake {
|
|
currentStakeAvailable
|
|
currentStakeAvailableFormatted @client
|
|
}
|
|
delegations {
|
|
amount
|
|
amountFormatted @client
|
|
epoch
|
|
node {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
epoch {
|
|
id
|
|
timestamps {
|
|
start
|
|
end
|
|
expiry
|
|
}
|
|
}
|
|
nodes {
|
|
id
|
|
name
|
|
pubkey
|
|
infoUrl
|
|
location
|
|
ethereumAddress
|
|
stakedByOperator
|
|
stakedByDelegates
|
|
stakedTotal
|
|
pendingStake
|
|
stakedByOperatorFormatted @client
|
|
stakedByDelegatesFormatted @client
|
|
stakedTotalFormatted @client
|
|
pendingStakeFormatted @client
|
|
epochData {
|
|
total
|
|
offline
|
|
online
|
|
}
|
|
status
|
|
rankingScore {
|
|
rankingScore
|
|
stakeScore
|
|
performanceScore
|
|
votingPower
|
|
stakeScore
|
|
}
|
|
}
|
|
nodeData {
|
|
stakedTotal
|
|
stakedTotalFormatted @client
|
|
totalNodes
|
|
inactiveNodes
|
|
validatingNodes
|
|
uptime
|
|
}
|
|
}
|