Fix missing fragment name update (#1319)
This commit is contained in:
parent
6801b775c1
commit
17199e8f91
|
@ -120,17 +120,17 @@ export const WALLET = gql`
|
||||||
... on WalletLightningAddress {
|
... on WalletLightningAddress {
|
||||||
address
|
address
|
||||||
}
|
}
|
||||||
... on WalletLND {
|
... on WalletLnd {
|
||||||
socket
|
socket
|
||||||
macaroon
|
macaroon
|
||||||
cert
|
cert
|
||||||
}
|
}
|
||||||
... on WalletCLN {
|
... on WalletCln {
|
||||||
socket
|
socket
|
||||||
rune
|
rune
|
||||||
cert
|
cert
|
||||||
}
|
}
|
||||||
... on WalletLNbits {
|
... on WalletLnbits {
|
||||||
url
|
url
|
||||||
invoiceKey
|
invoiceKey
|
||||||
}
|
}
|
||||||
|
@ -153,17 +153,17 @@ export const WALLET_BY_TYPE = gql`
|
||||||
... on WalletLightningAddress {
|
... on WalletLightningAddress {
|
||||||
address
|
address
|
||||||
}
|
}
|
||||||
... on WalletLND {
|
... on WalletLnd {
|
||||||
socket
|
socket
|
||||||
macaroon
|
macaroon
|
||||||
cert
|
cert
|
||||||
}
|
}
|
||||||
... on WalletCLN {
|
... on WalletCln {
|
||||||
socket
|
socket
|
||||||
rune
|
rune
|
||||||
cert
|
cert
|
||||||
}
|
}
|
||||||
... on WalletLNbits {
|
... on WalletLnbits {
|
||||||
url
|
url
|
||||||
invoiceKey
|
invoiceKey
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue