Skip to content
Snippets Groups Projects

add info on idty view

Merged Hugo Trentesaux requested to merge hugo-dev into master
5 files
+ 94
85
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 15
14
query IdentityByIndex($index: Int!) {
query IdentityNameByIndex($index: Int!) {
identities(where: {index_eq: $index}) {
identities(where: {index_eq: $index}) {
index
name
name
account {
id
}
}
}
}
}
query IdentityByName($name: String!) {
query IdentityInfo($index: Int!) {
identities(where: {name_eq: $name}) {
identities(where: {index_eq: $index}) {
index
name
name
account {
certIssued(where: {active_eq: true}) {
 
receiver {
 
name
 
}
 
}
 
certReceived(where: {active_eq: true}) {
 
issuer {
 
name
 
}
 
}
 
linkedAccount {
id
id
}
}
}
}
}
}
query IdentityByPubkey($pubkey: String!) {
query IdentityNameByPubkey($pubkey: String!) {
identities(where: {account: {id_eq: $pubkey}}) {
identities(where: {account: {id_eq: $pubkey}}) {
index
name
name
account {
id
}
}
}
}
}
Loading