Skip to content

Display certification received and issued

One can take inspiration from the Cesium v1 view: image

Data source for this will be the duniter-squid indexer. Two dev instances are already available:

The query for that will look like:

query CertsViewQuery($identity_index: Int!) {
  identities(where: {index_eq: $identity_index}) {
    index
    name
    certIssued(orderBy: createdOn_DESC) {
      receiver {
        name
      }
      createdOn
      active
    }
    certReceived(orderBy: createdOn_DESC) {
      issuer {
        name
      }
      createdOn
      active
    }
  }
}