Add more options to issuingPrincipal
This commit is contained in:
parent
126b366569
commit
eaa40cf94a
1 changed files with 9 additions and 1 deletions
|
@ -4,11 +4,19 @@ export const gatewayInitialize = `subscription {
|
||||||
issuedAt
|
issuedAt
|
||||||
version
|
version
|
||||||
issuingPrincipal {
|
issuingPrincipal {
|
||||||
|
... on App {
|
||||||
|
id
|
||||||
|
__typename
|
||||||
|
}
|
||||||
|
... on User {
|
||||||
|
id
|
||||||
|
__typename
|
||||||
|
}
|
||||||
... on Node {
|
... on Node {
|
||||||
id
|
id
|
||||||
}
|
|
||||||
__typename
|
__typename
|
||||||
}
|
}
|
||||||
|
}
|
||||||
recipient {
|
recipient {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
|
Loading…
Reference in a new issue