forked from GaloyMoney/blink-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supergraph.graphql
2564 lines (2159 loc) · 66.6 KB
/
supergraph.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema
@link(url: "https://specs.apollo.dev/link/v1.0")
@link(url: "https://specs.apollo.dev/join/v0.3", for: EXECUTION)
{
query: Query
mutation: Mutation
subscription: Subscription
}
directive @join__enumValue(graph: join__Graph!) repeatable on ENUM_VALUE
directive @join__field(graph: join__Graph, requires: join__FieldSet, provides: join__FieldSet, type: String, external: Boolean, override: String, usedOverridden: Boolean) repeatable on FIELD_DEFINITION | INPUT_FIELD_DEFINITION
directive @join__graph(name: String!, url: String!) on ENUM_VALUE
directive @join__implements(graph: join__Graph!, interface: String!) repeatable on OBJECT | INTERFACE
directive @join__type(graph: join__Graph!, key: join__FieldSet, extension: Boolean! = false, resolvable: Boolean! = true, isInterfaceObject: Boolean! = false) repeatable on OBJECT | INTERFACE | UNION | ENUM | INPUT_OBJECT | SCALAR
directive @join__unionMember(graph: join__Graph!, member: String!) repeatable on UNION
directive @link(url: String, as: String, for: link__Purpose, import: [link__Import]) repeatable on SCHEMA
interface Account
@join__type(graph: BLINK)
{
callbackEndpoints: [CallbackEndpoint!]!
callbackPortalUrl: String!
csvTransactions(walletIds: [WalletId!]!): String!
defaultWallet: PublicWallet!
defaultWalletId: WalletId! @deprecated(reason: "Shifting property to 'defaultWallet.id'")
displayCurrency: DisplayCurrency!
id: ID!
invoices(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
walletIds: [WalletId]
): InvoiceConnection
level: AccountLevel!
limits: AccountLimits!
notificationSettings: NotificationSettings!
pendingIncomingTransactions(walletIds: [WalletId]): [Transaction!]!
realtimePrice: RealtimePrice!
transactions(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
walletIds: [WalletId]
): TransactionConnection
walletById(walletId: WalletId!): Wallet!
wallets: [Wallet!]!
}
type AccountDeletePayload
@join__type(graph: BLINK)
{
errors: [Error!]!
success: Boolean!
}
input AccountDisableNotificationCategoryInput
@join__type(graph: BLINK)
{
category: NotificationCategory!
channel: NotificationChannel
}
input AccountDisableNotificationChannelInput
@join__type(graph: BLINK)
{
channel: NotificationChannel!
}
input AccountEnableNotificationCategoryInput
@join__type(graph: BLINK)
{
category: NotificationCategory!
channel: NotificationChannel
}
input AccountEnableNotificationChannelInput
@join__type(graph: BLINK)
{
channel: NotificationChannel!
}
enum AccountLevel
@join__type(graph: BLINK)
{
ONE @join__enumValue(graph: BLINK)
TWO @join__enumValue(graph: BLINK)
ZERO @join__enumValue(graph: BLINK)
}
interface AccountLimit
@join__type(graph: BLINK)
{
"""The rolling time interval in seconds that the limits would apply for."""
interval: Seconds
"""
The amount of cents remaining below the limit for the current 24 hour period.
"""
remainingLimit: CentAmount
"""The current maximum limit for a given 24 hour period."""
totalLimit: CentAmount!
}
type AccountLimits
@join__type(graph: BLINK)
{
"""
Limits for converting between currencies among a account's own wallets.
"""
convert: [AccountLimit!]!
"""Limits for sending to other internal accounts."""
internalSend: [AccountLimit!]!
"""Limits for withdrawing to external onchain or lightning destinations."""
withdrawal: [AccountLimit!]!
}
input AccountUpdateDefaultWalletIdInput
@join__type(graph: BLINK)
{
walletId: WalletId!
}
type AccountUpdateDefaultWalletIdPayload
@join__type(graph: BLINK)
{
account: ConsumerAccount
errors: [Error!]!
}
input AccountUpdateDisplayCurrencyInput
@join__type(graph: BLINK)
{
currency: DisplayCurrency!
}
type AccountUpdateDisplayCurrencyPayload
@join__type(graph: BLINK)
{
account: ConsumerAccount
errors: [Error!]!
}
type AccountUpdateNotificationSettingsPayload
@join__type(graph: BLINK)
{
account: ConsumerAccount
errors: [Error!]!
}
type ApiKey
@join__type(graph: BLINK)
{
id: ID!
name: String!
createdAt: Timestamp!
revoked: Boolean!
expired: Boolean!
lastUsedAt: Timestamp
expiresAt: Timestamp
readOnly: Boolean!
scopes: [Scope!]!
}
input ApiKeyCreateInput
@join__type(graph: BLINK)
{
name: String!
expireInDays: Int
scopes: [Scope!]! = [READ, WRITE]
}
type ApiKeyCreatePayload
@join__type(graph: BLINK)
{
apiKey: ApiKey!
apiKeySecret: String!
}
input ApiKeyRevokeInput
@join__type(graph: BLINK)
{
id: ID!
}
type ApiKeyRevokePayload
@join__type(graph: BLINK)
{
apiKey: ApiKey!
}
type Authorization
@join__type(graph: BLINK)
{
scopes: [Scope!]!
}
"""An Opaque Bearer token"""
scalar AuthToken
@join__type(graph: BLINK)
type AuthTokenPayload
@join__type(graph: BLINK)
{
authToken: AuthToken
errors: [Error!]!
totpRequired: Boolean
}
"""
A wallet belonging to an account which contains a BTC balance and a list of transactions.
"""
type BTCWallet implements Wallet
@join__implements(graph: BLINK, interface: "Wallet")
@join__type(graph: BLINK)
{
accountId: ID!
"""A balance stored in BTC."""
balance: SignedAmount!
id: ID!
invoiceByPaymentHash(paymentHash: PaymentHash!): Invoice!
"""A list of all invoices associated with walletIds optionally passed."""
invoices(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
): InvoiceConnection
"""An unconfirmed incoming onchain balance."""
pendingIncomingBalance: SignedAmount!
pendingIncomingTransactions: [Transaction!]!
pendingIncomingTransactionsByAddress(
"""Returns the items that include this address."""
address: OnChainAddress!
): [Transaction!]!
transactionById(transactionId: ID!): Transaction!
"""A list of BTC transactions associated with this wallet."""
transactions(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
): TransactionConnection
transactionsByAddress(
"""Returns the items that include this address."""
address: OnChainAddress!
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
): TransactionConnection
transactionsByPaymentHash(paymentHash: PaymentHash!): [Transaction!]!
transactionsByPaymentRequest(paymentRequest: LnPaymentRequest!): [Transaction!]!
walletCurrency: WalletCurrency!
}
type BuildInformation
@join__type(graph: BLINK)
{
commitHash: String
helmRevision: Int
}
type CallbackEndpoint
@join__type(graph: BLINK)
{
id: EndpointId!
url: EndpointUrl!
}
input CallbackEndpointAddInput
@join__type(graph: BLINK)
{
"""callback endpoint to be called"""
url: EndpointUrl!
}
type CallbackEndpointAddPayload
@join__type(graph: BLINK)
{
errors: [Error!]!
id: EndpointId
}
input CallbackEndpointDeleteInput
@join__type(graph: BLINK)
{
id: EndpointId!
}
type CaptchaCreateChallengePayload
@join__type(graph: BLINK)
{
errors: [Error!]!
result: CaptchaCreateChallengeResult
}
type CaptchaCreateChallengeResult
@join__type(graph: BLINK)
{
challengeCode: String!
failbackMode: Boolean!
id: String!
newCaptcha: Boolean!
}
input CaptchaRequestAuthCodeInput
@join__type(graph: BLINK)
{
challengeCode: String!
channel: PhoneCodeChannelType
phone: Phone!
secCode: String!
validationCode: String!
}
"""(Positive) Cent amount (1/100 of a dollar)"""
scalar CentAmount
@join__type(graph: BLINK)
type CentAmountPayload
@join__type(graph: BLINK)
{
amount: CentAmount
errors: [Error!]!
}
type ConsumerAccount implements Account
@join__implements(graph: BLINK, interface: "Account")
@join__type(graph: BLINK)
@join__type(graph: CIRCLES, key: "id")
@join__type(graph: KYC, key: "id")
{
callbackEndpoints: [CallbackEndpoint!]! @join__field(graph: BLINK)
callbackPortalUrl: String! @join__field(graph: BLINK)
"""
return CSV stream, base64 encoded, of the list of transactions in the wallet
"""
csvTransactions(walletIds: [WalletId!]!): String! @join__field(graph: BLINK)
defaultWallet: PublicWallet! @join__field(graph: BLINK)
defaultWalletId: WalletId! @join__field(graph: BLINK)
displayCurrency: DisplayCurrency! @join__field(graph: BLINK)
id: ID!
"""A list of all invoices associated with walletIds optionally passed."""
invoices(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
walletIds: [WalletId]
): InvoiceConnection @join__field(graph: BLINK)
level: AccountLevel! @join__field(graph: BLINK)
limits: AccountLimits! @join__field(graph: BLINK)
notificationSettings: NotificationSettings! @join__field(graph: BLINK)
pendingIncomingTransactions(walletIds: [WalletId]): [Transaction!]! @join__field(graph: BLINK)
"""List the quiz questions of the consumer account"""
quiz: [Quiz!]! @join__field(graph: BLINK)
realtimePrice: RealtimePrice! @join__field(graph: BLINK)
"""
A list of all transactions associated with walletIds optionally passed.
"""
transactions(
"""Returns the items in the list that come after the specified cursor."""
after: String
"""Returns the items in the list that come before the specified cursor."""
before: String
"""Returns the first n items from the list."""
first: Int
"""Returns the last n items from the list."""
last: Int
walletIds: [WalletId]
): TransactionConnection @join__field(graph: BLINK)
walletById(walletId: WalletId!): Wallet! @join__field(graph: BLINK)
wallets: [Wallet!]! @join__field(graph: BLINK)
welcomeProfile: WelcomeProfile @join__field(graph: CIRCLES)
onboardingStatus: OnboardingStatus @join__field(graph: KYC)
firstName: String @join__field(graph: KYC)
lastName: String @join__field(graph: KYC)
}
"""
An alias name that a user can set for a wallet (with which they have transactions)
"""
scalar ContactAlias
@join__type(graph: BLINK)
type Coordinates
@join__type(graph: BLINK)
{
latitude: Float!
longitude: Float!
}
type Country
@join__type(graph: BLINK)
{
id: CountryCode!
supportedAuthChannels: [PhoneCodeChannelType!]!
}
"""A CCA2 country code (ex US, FR, etc)"""
scalar CountryCode
@join__type(graph: BLINK)
type Currency
@join__type(graph: BLINK)
{
flag: String!
fractionDigits: Int!
id: ID!
name: String!
symbol: String!
}
type CurrencyConversionEstimation
@join__type(graph: BLINK)
{
"""Amount in satoshis."""
btcSatAmount: SatAmount!
id: ID!
"""
Unix timestamp (number of seconds elapsed since January 1, 1970 00:00:00 UTC)
"""
timestamp: Timestamp!
"""Amount in USD cents."""
usdCentAmount: CentAmount!
}
type DepositFeesInformation
@join__type(graph: BLINK)
{
minBankFee: String!
"""below this amount minBankFee will be charged"""
minBankFeeThreshold: String!
"""ratio to charge as basis points above minBankFeeThreshold amount"""
ratio: String!
}
input DeviceNotificationTokenCreateInput
@join__type(graph: BLINK)
{
deviceToken: String!
}
"""Display currency of an account"""
scalar DisplayCurrency
@join__type(graph: BLINK)
type Email
@join__type(graph: BLINK)
{
address: EmailAddress
verified: Boolean
}
"""Email address"""
scalar EmailAddress
@join__type(graph: BLINK)
"""
An id to be passed between registrationInitiate and registrationValidate for confirming email
"""
scalar EmailRegistrationId
@join__type(graph: BLINK)
scalar EndpointId
@join__type(graph: BLINK)
"""Url that will be fetched on events for the account"""
scalar EndpointUrl
@join__type(graph: BLINK)
interface Error
@join__type(graph: BLINK)
{
code: String
message: String!
path: [String]
}
enum ExchangeCurrencyUnit
@join__type(graph: BLINK)
{
BTCSAT @join__enumValue(graph: BLINK)
USDCENT @join__enumValue(graph: BLINK)
}
"""Feedback shared with our user"""
scalar Feedback
@join__type(graph: BLINK)
input FeedbackSubmitInput
@join__type(graph: BLINK)
{
feedback: Feedback!
}
type FeesInformation
@join__type(graph: BLINK)
{
deposit: DepositFeesInformation!
}
"""
Provides global settings for the application which might have an impact for the user.
"""
type Globals
@join__type(graph: BLINK)
{
buildInformation: BuildInformation!
feesInformation: FeesInformation!
"""
The domain name for lightning addresses accepted by this Galoy instance
"""
lightningAddressDomain: String!
lightningAddressDomainAliases: [String!]!
"""
Which network (mainnet, testnet, regtest, signet) this instance is running on.
"""
network: Network!
"""
A list of public keys for the running lightning nodes.
This can be used to know if an invoice belongs to one of our nodes.
"""
nodesIds: [String!]!
"""A list of countries and their supported auth channels"""
supportedCountries: [Country!]!
}
type GraphQLApplicationError implements Error
@join__implements(graph: BLINK, interface: "Error")
@join__type(graph: BLINK)
{
code: String
message: String!
path: [String]
}
"""Hex-encoded string of 32 bytes"""
scalar Hex32Bytes
@join__type(graph: BLINK)
enum Icon
@join__type(graph: BLINK)
{
ARROW_RIGHT @join__enumValue(graph: BLINK)
ARROW_LEFT @join__enumValue(graph: BLINK)
BACK_SPACE @join__enumValue(graph: BLINK)
BANK @join__enumValue(graph: BLINK)
BITCOIN @join__enumValue(graph: BLINK)
BOOK @join__enumValue(graph: BLINK)
BTC_BOOK @join__enumValue(graph: BLINK)
CARET_DOWN @join__enumValue(graph: BLINK)
CARET_LEFT @join__enumValue(graph: BLINK)
CARET_RIGHT @join__enumValue(graph: BLINK)
CARET_UP @join__enumValue(graph: BLINK)
CHECK_CIRCLE @join__enumValue(graph: BLINK)
CHECK @join__enumValue(graph: BLINK)
CLOSE @join__enumValue(graph: BLINK)
CLOSE_CROSS_WITH_BACKGROUND @join__enumValue(graph: BLINK)
COINS @join__enumValue(graph: BLINK)
PEOPLE @join__enumValue(graph: BLINK)
COPY_PASTE @join__enumValue(graph: BLINK)
DOLLAR @join__enumValue(graph: BLINK)
EYE_SLASH @join__enumValue(graph: BLINK)
EYE @join__enumValue(graph: BLINK)
FILTER @join__enumValue(graph: BLINK)
GLOBE @join__enumValue(graph: BLINK)
GRAPH @join__enumValue(graph: BLINK)
IMAGE @join__enumValue(graph: BLINK)
INFO @join__enumValue(graph: BLINK)
LIGHTNING @join__enumValue(graph: BLINK)
LINK @join__enumValue(graph: BLINK)
LOADING @join__enumValue(graph: BLINK)
MAGNIFYING_GLASS @join__enumValue(graph: BLINK)
MAP @join__enumValue(graph: BLINK)
MENU @join__enumValue(graph: BLINK)
PENCIL @join__enumValue(graph: BLINK)
NOTE @join__enumValue(graph: BLINK)
RANK @join__enumValue(graph: BLINK)
QR_CODE @join__enumValue(graph: BLINK)
QUESTION @join__enumValue(graph: BLINK)
RECEIVE @join__enumValue(graph: BLINK)
SEND @join__enumValue(graph: BLINK)
SETTINGS @join__enumValue(graph: BLINK)
SHARE @join__enumValue(graph: BLINK)
TRANSFER @join__enumValue(graph: BLINK)
USER @join__enumValue(graph: BLINK)
VIDEO @join__enumValue(graph: BLINK)
WARNING @join__enumValue(graph: BLINK)
WARNING_WITH_BACKGROUND @join__enumValue(graph: BLINK)
PAYMENT_SUCCESS @join__enumValue(graph: BLINK)
PAYMENT_PENDING @join__enumValue(graph: BLINK)
PAYMENT_ERROR @join__enumValue(graph: BLINK)
BELL @join__enumValue(graph: BLINK)
REFRESH @join__enumValue(graph: BLINK)
}
union InitiationVia
@join__type(graph: BLINK)
@join__unionMember(graph: BLINK, member: "InitiationViaIntraLedger")
@join__unionMember(graph: BLINK, member: "InitiationViaLn")
@join__unionMember(graph: BLINK, member: "InitiationViaOnChain")
= InitiationViaIntraLedger | InitiationViaLn | InitiationViaOnChain
type InitiationViaIntraLedger
@join__type(graph: BLINK)
{
counterPartyUsername: Username
counterPartyWalletId: WalletId
}
type InitiationViaLn
@join__type(graph: BLINK)
{
paymentHash: PaymentHash!
"""Bolt11 invoice"""
paymentRequest: LnPaymentRequest!
}
type InitiationViaOnChain
@join__type(graph: BLINK)
{
address: OnChainAddress!
}
input IntraLedgerPaymentSendInput
@join__type(graph: BLINK)
{
"""Amount in satoshis."""
amount: SatAmount!
"""Optional memo to be attached to the payment."""
memo: Memo
recipientWalletId: WalletId!
"""The wallet ID of the sender."""
walletId: WalletId!
}
type IntraLedgerUpdate
@join__type(graph: BLINK)
{
amount: SatAmount! @deprecated(reason: "Deprecated in favor of transaction")
displayCurrencyPerSat: Float! @deprecated(reason: "Deprecated in favor of transaction")
transaction: Transaction!
txNotificationType: TxNotificationType!
usdPerSat: Float! @deprecated(reason: "updated over displayCurrencyPerSat")
walletId: WalletId! @deprecated(reason: "Deprecated in favor of transaction")
}
input IntraLedgerUsdPaymentSendInput
@join__type(graph: BLINK)
{
"""Amount in cents."""
amount: CentAmount!
"""Optional memo to be attached to the payment."""
memo: Memo
recipientWalletId: WalletId!
"""The wallet ID of the sender."""
walletId: WalletId!
}
"""A lightning invoice."""
interface Invoice
@join__type(graph: BLINK)
{
createdAt: Timestamp!
"""The unique external id set for the invoice."""
externalId: TxExternalId!
"""The payment hash of the lightning invoice."""
paymentHash: PaymentHash!
"""The bolt11 invoice to be paid."""
paymentRequest: LnPaymentRequest!
"""
The payment secret of the lightning invoice. This is not the preimage of the payment hash.
"""
paymentSecret: LnPaymentSecret!
"""The payment status of the invoice."""
paymentStatus: InvoicePaymentStatus!
}
"""A connection to a list of items."""
type InvoiceConnection
@join__type(graph: BLINK)
{
"""A list of edges."""
edges: [InvoiceEdge!]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type InvoiceEdge
@join__type(graph: BLINK)
{
"""A cursor for use in pagination"""
cursor: String!
"""The item at the end of the edge"""
node: Invoice!
}
enum InvoicePaymentStatus
@join__type(graph: BLINK)
{
EXPIRED @join__enumValue(graph: BLINK)
PAID @join__enumValue(graph: BLINK)
PENDING @join__enumValue(graph: BLINK)
}
scalar join__FieldSet
enum join__Graph {
BLINK @join__graph(name: "blink", url: "url")
CIRCLES @join__graph(name: "circles", url: "url")
KYC @join__graph(name: "kyc", url: "url")
}
scalar Language
@join__type(graph: BLINK)
type Leader
@join__type(graph: CIRCLES)
{
rank: Int!
name: LeaderboardName
points: Int!
}
type Leaderboard
@join__type(graph: CIRCLES)
{
range: WelcomeRange!
leaders: [Leader!]!
}
scalar LeaderboardName
@join__type(graph: CIRCLES)
scalar link__Import
enum link__Purpose {
"""
`SECURITY` features provide metadata necessary to securely resolve fields.
"""
SECURITY
"""
`EXECUTION` features provide metadata necessary for operation execution.
"""
EXECUTION
}
input LnAddressPaymentSendInput
@join__type(graph: BLINK)
{
"""Amount in satoshis."""
amount: SatAmount!
"""Lightning address to send to."""
lnAddress: String!
"""Wallet ID to send bitcoin from."""
walletId: WalletId!
}
type LnInvoice implements Invoice
@join__implements(graph: BLINK, interface: "Invoice")
@join__type(graph: BLINK)
{
createdAt: Timestamp!
externalId: TxExternalId!
paymentHash: PaymentHash!
paymentRequest: LnPaymentRequest!
paymentSecret: LnPaymentSecret!
paymentStatus: InvoicePaymentStatus!
satoshis: SatAmount!
}
input LnInvoiceCancelInput
@join__type(graph: BLINK)
{
paymentHash: PaymentHash!
"""Wallet ID for a wallet associated with the current account."""
walletId: WalletId!
}
input LnInvoiceCreateInput
@join__type(graph: BLINK)
{
"""Amount in satoshis."""
amount: SatAmount!
"""Optional invoice expiration time in minutes."""
expiresIn: Minutes
externalId: TxExternalId
"""Optional memo for the lightning invoice."""
memo: Memo
"""Wallet ID for a BTC wallet belonging to the current account."""
walletId: WalletId!
}
input LnInvoiceCreateOnBehalfOfRecipientInput
@join__type(graph: BLINK)
{
"""Amount in satoshis."""
amount: SatAmount!
descriptionHash: Hex32Bytes
"""Optional invoice expiration time in minutes."""
expiresIn: Minutes
externalId: TxExternalId
"""Optional memo for the lightning invoice."""
memo: Memo
"""Wallet ID for a BTC wallet which belongs to any account."""
recipientWalletId: WalletId!
}
input LnInvoiceFeeProbeInput
@join__type(graph: BLINK)
{
paymentRequest: LnPaymentRequest!
walletId: WalletId!
}
type LnInvoicePayload
@join__type(graph: BLINK)
{
errors: [Error!]!
invoice: LnInvoice
}
input LnInvoicePaymentInput
@join__type(graph: BLINK)
{
"""Optional memo to associate with the lightning invoice."""
memo: Memo
"""Payment request representing the invoice which is being paid."""
paymentRequest: LnPaymentRequest!
"""
Wallet ID with sufficient balance to cover amount of invoice. Must belong to the account of the current user.
"""
walletId: WalletId!
}
type LnInvoicePaymentStatus
@join__type(graph: BLINK)
{
paymentHash: PaymentHash
paymentRequest: LnPaymentRequest
status: InvoicePaymentStatus
}
input LnInvoicePaymentStatusByHashInput
@join__type(graph: BLINK)
{
paymentHash: PaymentHash!
}
input LnInvoicePaymentStatusByPaymentRequestInput
@join__type(graph: BLINK)
{
paymentRequest: LnPaymentRequest!
}
input LnInvoicePaymentStatusInput
@join__type(graph: BLINK)
{
paymentRequest: LnPaymentRequest!
}
type LnInvoicePaymentStatusPayload
@join__type(graph: BLINK)
{
errors: [Error!]!
paymentHash: PaymentHash
paymentRequest: LnPaymentRequest
status: InvoicePaymentStatus
}
type LnNoAmountInvoice implements Invoice
@join__implements(graph: BLINK, interface: "Invoice")
@join__type(graph: BLINK)
{
createdAt: Timestamp!
externalId: TxExternalId!
paymentHash: PaymentHash!
paymentRequest: LnPaymentRequest!
paymentSecret: LnPaymentSecret!
paymentStatus: InvoicePaymentStatus!
}
input LnNoAmountInvoiceCreateInput
@join__type(graph: BLINK)
{
"""Optional invoice expiration time in minutes."""
expiresIn: Minutes
externalId: TxExternalId
"""Optional memo for the lightning invoice."""
memo: Memo
"""
ID for either a USD or BTC wallet belonging to the account of the current user.
"""
walletId: WalletId!
}
input LnNoAmountInvoiceCreateOnBehalfOfRecipientInput
@join__type(graph: BLINK)
{