Skip to content
Snippets Groups Projects
Closed Display certification received and issued
  • View options
  • Display certification received and issued

  • View options
  • Closed Issue created by Hugo Trentesaux

    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
        }
      }
    }

    Activity

    • All activity
    • Comments only
    • History only
    • Newest first
    • Oldest first