litentry / litentry-graph

A GraphQL Server providing aggregated blockchain identity data
Apache License 2.0
7 stars 0 forks source link

Index democracy proposals #205

Open stephanie-olp opened 2 years ago

stephanie-olp commented 2 years ago

Right now we only have the ongoing democracy proposals. We would like to have all proposals, the ongoing, the one that passed but also the one that got canceled

silva-fj commented 2 years ago

We have some data available (here) with the following query:

query DemocracyProposalsQuery {
  substrateDemocracyProposals(limit: 10, where: {network_eq: polkadot}) {
    id
    rootAccount
    proposalIndex
    date
    blockNumber
    amount
    account {
      id
    }
  }
}

Notes on the things we can improve and missing data:

silva-fj commented 2 years ago

@geastwood FYI

stephanie-olp commented 2 years ago

Data that need to be indexed (can change) :

stephanie-olp commented 2 years ago