Skip to content

Commit 2b8cb5d

Browse files
authored
feat: codegen supergraph (#2544)
* feat: codegen supergraph * chore: switch port back * fix: depreciated field targetConfirmations * chore: typo * chore: update codegen to new scheme * chore: codegen from staging * chore: graphql-inspector config for preflight
1 parent ced483e commit 2b8cb5d

File tree

8 files changed

+4486
-818
lines changed

8 files changed

+4486
-818
lines changed

app/graphql/generated.gql

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -936,41 +936,27 @@ query network {
936936
}
937937
}
938938

939-
query onChainTxFee($walletId: WalletId!, $address: OnChainAddress!, $amount: SatAmount!, $targetConfirmations: TargetConfirmations) {
940-
onChainTxFee(
941-
walletId: $walletId
942-
address: $address
943-
amount: $amount
944-
targetConfirmations: $targetConfirmations
945-
) {
939+
query onChainTxFee($walletId: WalletId!, $address: OnChainAddress!, $amount: SatAmount!) {
940+
onChainTxFee(walletId: $walletId, address: $address, amount: $amount) {
946941
amount
947-
targetConfirmations
948942
__typename
949943
}
950944
}
951945

952-
query onChainUsdTxFee($walletId: WalletId!, $address: OnChainAddress!, $amount: CentAmount!, $targetConfirmations: TargetConfirmations) {
953-
onChainUsdTxFee(
954-
walletId: $walletId
955-
address: $address
956-
amount: $amount
957-
targetConfirmations: $targetConfirmations
958-
) {
946+
query onChainUsdTxFee($walletId: WalletId!, $address: OnChainAddress!, $amount: CentAmount!) {
947+
onChainUsdTxFee(walletId: $walletId, address: $address, amount: $amount) {
959948
amount
960-
targetConfirmations
961949
__typename
962950
}
963951
}
964952

965-
query onChainUsdTxFeeAsBtcDenominated($walletId: WalletId!, $address: OnChainAddress!, $amount: SatAmount!, $targetConfirmations: TargetConfirmations) {
953+
query onChainUsdTxFeeAsBtcDenominated($walletId: WalletId!, $address: OnChainAddress!, $amount: SatAmount!) {
966954
onChainUsdTxFeeAsBtcDenominated(
967955
walletId: $walletId
968956
address: $address
969957
amount: $amount
970-
targetConfirmations: $targetConfirmations
971958
) {
972959
amount
973-
targetConfirmations
974960
__typename
975961
}
976962
}

0 commit comments

Comments
 (0)