Skip to content
Snippets Groups Projects
indexer-queries.graphql 666 B
Newer Older
query IdentityNameByIndex($index: Int!) {
  identities(where: {index_eq: $index}) {
query IdentityInfo($index: Int!) {
  identities(where: {index_eq: $index}) {
    certIssued(where: {active_eq: true}) {
      receiver {
        name
      }
    }
    certReceived(where: {active_eq: true}) {
      issuer {
        name
      }
    }
    linkedAccount {
query IdentityNameByPubkey($pubkey: String!) {
  identities(where: {account: {id_eq: $pubkey}}) {
  }
}

query LatestBlock {
  blocks(limit: 1, orderBy: height_DESC) {
    height
  blocks(where: {height_eq: 0}) {