fragment-dev 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fragment.schema.json +824 -103
- data/lib/fragment_client/graphql_ast.rb +73 -0
- data/lib/fragment_client/typed_entries.rb +444 -0
- data/lib/fragment_client/typed_ledger_entry.rb +281 -0
- data/lib/fragment_client/version.rb +1 -1
- data/lib/fragment_client.rb +169 -16
- data/lib/queries.graphql +46 -0
- data/lib/tapioca/dsl/compilers/fragment_query_methods.rb +61 -0
- data/lib/tapioca/dsl/compilers/fragment_response_types.rb +222 -0
- data/lib/tapioca/dsl/compilers/fragment_typed_entries.rb +169 -0
- data/lib/tapioca/dsl/helpers/graphql_sorbet_types.rb +53 -0
- metadata +9 -2
data/lib/fragment.schema.json
CHANGED
|
@@ -9,6 +9,281 @@
|
|
|
9
9
|
},
|
|
10
10
|
"subscriptionType": null,
|
|
11
11
|
"types": [
|
|
12
|
+
{
|
|
13
|
+
"kind": "OBJECT",
|
|
14
|
+
"name": "AddLedgerEntriesError",
|
|
15
|
+
"description": "Error returned when one or more Ledger Entries in the batch could not be added.",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"name": "code",
|
|
19
|
+
"description": "The status code of error. For example, 'ledger_entry_batch_operation_failed'.",
|
|
20
|
+
"args": [],
|
|
21
|
+
"type": {
|
|
22
|
+
"kind": "NON_NULL",
|
|
23
|
+
"name": null,
|
|
24
|
+
"ofType": {
|
|
25
|
+
"kind": "SCALAR",
|
|
26
|
+
"name": "String",
|
|
27
|
+
"ofType": null
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"isDeprecated": false,
|
|
31
|
+
"deprecationReason": null
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "errors",
|
|
35
|
+
"description": "The list of errors for each Ledger Entry that was responsible for the batch's failure.",
|
|
36
|
+
"args": [],
|
|
37
|
+
"type": {
|
|
38
|
+
"kind": "NON_NULL",
|
|
39
|
+
"name": null,
|
|
40
|
+
"ofType": {
|
|
41
|
+
"kind": "LIST",
|
|
42
|
+
"name": null,
|
|
43
|
+
"ofType": {
|
|
44
|
+
"kind": "NON_NULL",
|
|
45
|
+
"name": null,
|
|
46
|
+
"ofType": {
|
|
47
|
+
"kind": "OBJECT",
|
|
48
|
+
"name": "AddLedgerEntryError",
|
|
49
|
+
"ofType": null
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"isDeprecated": false,
|
|
55
|
+
"deprecationReason": null
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "message",
|
|
59
|
+
"description": "The error message",
|
|
60
|
+
"args": [],
|
|
61
|
+
"type": {
|
|
62
|
+
"kind": "NON_NULL",
|
|
63
|
+
"name": null,
|
|
64
|
+
"ofType": {
|
|
65
|
+
"kind": "SCALAR",
|
|
66
|
+
"name": "String",
|
|
67
|
+
"ofType": null
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"isDeprecated": false,
|
|
71
|
+
"deprecationReason": null
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "retryable",
|
|
75
|
+
"description": "Whether or not the operation is retryable",
|
|
76
|
+
"args": [],
|
|
77
|
+
"type": {
|
|
78
|
+
"kind": "NON_NULL",
|
|
79
|
+
"name": null,
|
|
80
|
+
"ofType": {
|
|
81
|
+
"kind": "SCALAR",
|
|
82
|
+
"name": "Boolean",
|
|
83
|
+
"ofType": null
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"isDeprecated": false,
|
|
87
|
+
"deprecationReason": null
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"inputFields": null,
|
|
91
|
+
"interfaces": [
|
|
92
|
+
{
|
|
93
|
+
"kind": "INTERFACE",
|
|
94
|
+
"name": "Error",
|
|
95
|
+
"ofType": null
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"enumValues": null,
|
|
99
|
+
"possibleTypes": null
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"kind": "UNION",
|
|
103
|
+
"name": "AddLedgerEntriesResponse",
|
|
104
|
+
"description": null,
|
|
105
|
+
"fields": null,
|
|
106
|
+
"inputFields": null,
|
|
107
|
+
"interfaces": null,
|
|
108
|
+
"enumValues": null,
|
|
109
|
+
"possibleTypes": [
|
|
110
|
+
{
|
|
111
|
+
"kind": "OBJECT",
|
|
112
|
+
"name": "AddLedgerEntriesError",
|
|
113
|
+
"ofType": null
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"kind": "OBJECT",
|
|
117
|
+
"name": "AddLedgerEntriesResult",
|
|
118
|
+
"ofType": null
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"kind": "OBJECT",
|
|
122
|
+
"name": "BadRequestError",
|
|
123
|
+
"ofType": null
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"kind": "OBJECT",
|
|
127
|
+
"name": "InternalError",
|
|
128
|
+
"ofType": null
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"kind": "OBJECT",
|
|
134
|
+
"name": "AddLedgerEntriesResult",
|
|
135
|
+
"description": null,
|
|
136
|
+
"fields": [
|
|
137
|
+
{
|
|
138
|
+
"name": "results",
|
|
139
|
+
"description": "The added Ledger Entries, in the same order as the input",
|
|
140
|
+
"args": [],
|
|
141
|
+
"type": {
|
|
142
|
+
"kind": "NON_NULL",
|
|
143
|
+
"name": null,
|
|
144
|
+
"ofType": {
|
|
145
|
+
"kind": "LIST",
|
|
146
|
+
"name": null,
|
|
147
|
+
"ofType": {
|
|
148
|
+
"kind": "NON_NULL",
|
|
149
|
+
"name": null,
|
|
150
|
+
"ofType": {
|
|
151
|
+
"kind": "OBJECT",
|
|
152
|
+
"name": "AddLedgerEntryResult",
|
|
153
|
+
"ofType": null
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"isDeprecated": false,
|
|
159
|
+
"deprecationReason": null
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"inputFields": null,
|
|
163
|
+
"interfaces": [],
|
|
164
|
+
"enumValues": null,
|
|
165
|
+
"possibleTypes": null
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "OBJECT",
|
|
169
|
+
"name": "AddLedgerEntryError",
|
|
170
|
+
"description": "Error details for a single Ledger Entry that was responsible for the batch's failure.",
|
|
171
|
+
"fields": [
|
|
172
|
+
{
|
|
173
|
+
"name": "code",
|
|
174
|
+
"description": "The status code of error. For example, 'ledger_entry_too_many_lines'.",
|
|
175
|
+
"args": [],
|
|
176
|
+
"type": {
|
|
177
|
+
"kind": "NON_NULL",
|
|
178
|
+
"name": null,
|
|
179
|
+
"ofType": {
|
|
180
|
+
"kind": "SCALAR",
|
|
181
|
+
"name": "String",
|
|
182
|
+
"ofType": null
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"isDeprecated": false,
|
|
186
|
+
"deprecationReason": null
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "ik",
|
|
190
|
+
"description": "The [Idempotency Key](https://fragment.dev/api-reference/api-overview#idempotency) of the Ledger Entry",
|
|
191
|
+
"args": [],
|
|
192
|
+
"type": {
|
|
193
|
+
"kind": "NON_NULL",
|
|
194
|
+
"name": null,
|
|
195
|
+
"ofType": {
|
|
196
|
+
"kind": "SCALAR",
|
|
197
|
+
"name": "SafeString",
|
|
198
|
+
"ofType": null
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"isDeprecated": false,
|
|
202
|
+
"deprecationReason": null
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "message",
|
|
206
|
+
"description": "The error message",
|
|
207
|
+
"args": [],
|
|
208
|
+
"type": {
|
|
209
|
+
"kind": "NON_NULL",
|
|
210
|
+
"name": null,
|
|
211
|
+
"ofType": {
|
|
212
|
+
"kind": "SCALAR",
|
|
213
|
+
"name": "String",
|
|
214
|
+
"ofType": null
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"isDeprecated": false,
|
|
218
|
+
"deprecationReason": null
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "retryable",
|
|
222
|
+
"description": "Whether or not the operation is retryable",
|
|
223
|
+
"args": [],
|
|
224
|
+
"type": {
|
|
225
|
+
"kind": "NON_NULL",
|
|
226
|
+
"name": null,
|
|
227
|
+
"ofType": {
|
|
228
|
+
"kind": "SCALAR",
|
|
229
|
+
"name": "Boolean",
|
|
230
|
+
"ofType": null
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"isDeprecated": false,
|
|
234
|
+
"deprecationReason": null
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"inputFields": null,
|
|
238
|
+
"interfaces": [
|
|
239
|
+
{
|
|
240
|
+
"kind": "INTERFACE",
|
|
241
|
+
"name": "Error",
|
|
242
|
+
"ofType": null
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"enumValues": null,
|
|
246
|
+
"possibleTypes": null
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"kind": "INPUT_OBJECT",
|
|
250
|
+
"name": "AddLedgerEntryInput",
|
|
251
|
+
"description": null,
|
|
252
|
+
"fields": null,
|
|
253
|
+
"inputFields": [
|
|
254
|
+
{
|
|
255
|
+
"name": "entry",
|
|
256
|
+
"description": "The [Ledger Entry](https://fragment.dev/api-reference/api-types#input-types-ledgerentryinput) to add",
|
|
257
|
+
"type": {
|
|
258
|
+
"kind": "NON_NULL",
|
|
259
|
+
"name": null,
|
|
260
|
+
"ofType": {
|
|
261
|
+
"kind": "INPUT_OBJECT",
|
|
262
|
+
"name": "LedgerEntryInput",
|
|
263
|
+
"ofType": null
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"defaultValue": null
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "ik",
|
|
270
|
+
"description": "The [Idempotency Key](https://fragment.dev/api-reference/api-overview#idempotency) for this Ledger Entry",
|
|
271
|
+
"type": {
|
|
272
|
+
"kind": "NON_NULL",
|
|
273
|
+
"name": null,
|
|
274
|
+
"ofType": {
|
|
275
|
+
"kind": "SCALAR",
|
|
276
|
+
"name": "SafeString",
|
|
277
|
+
"ofType": null
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"defaultValue": null
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"interfaces": null,
|
|
284
|
+
"enumValues": null,
|
|
285
|
+
"possibleTypes": null
|
|
286
|
+
},
|
|
12
287
|
{
|
|
13
288
|
"kind": "UNION",
|
|
14
289
|
"name": "AddLedgerEntryResponse",
|
|
@@ -312,7 +587,7 @@
|
|
|
312
587
|
{
|
|
313
588
|
"kind": "ENUM",
|
|
314
589
|
"name": "BalanceUpdateConsistencyMode",
|
|
315
|
-
"description": "Used to configure the write-consistency of a Ledger Account's balance. See [Configure consistency](https://fragment.dev/
|
|
590
|
+
"description": "Used to configure the write-consistency of a Ledger Account's balance. See [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
316
591
|
"fields": null,
|
|
317
592
|
"inputFields": null,
|
|
318
593
|
"interfaces": null,
|
|
@@ -372,7 +647,7 @@
|
|
|
372
647
|
},
|
|
373
648
|
{
|
|
374
649
|
"name": "defaultConsistencyConfig",
|
|
375
|
-
"description": "The default consistency configuration for all Ledger Accounts in this Schema. \nIf a Ledger Account does not specify its own consistency configuration, it will use the default values provided here. \n\nSee [Configure consistency](https://fragment.dev/
|
|
650
|
+
"description": "The default consistency configuration for all Ledger Accounts in this Schema. \nIf a Ledger Account does not specify its own consistency configuration, it will use the default values provided here. \n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
376
651
|
"type": {
|
|
377
652
|
"kind": "INPUT_OBJECT",
|
|
378
653
|
"name": "LedgerAccountConsistencyConfigInput",
|
|
@@ -774,7 +1049,7 @@
|
|
|
774
1049
|
},
|
|
775
1050
|
{
|
|
776
1051
|
"name": "consistencyConfig",
|
|
777
|
-
"description": "The consistency configuration for this ledger account. See [Configure consistency](https://fragment.dev/
|
|
1052
|
+
"description": "The consistency configuration for this ledger account. See [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
778
1053
|
"type": {
|
|
779
1054
|
"kind": "INPUT_OBJECT",
|
|
780
1055
|
"name": "LedgerAccountConsistencyConfigInput",
|
|
@@ -818,7 +1093,7 @@
|
|
|
818
1093
|
},
|
|
819
1094
|
{
|
|
820
1095
|
"name": "linkedAccount",
|
|
821
|
-
"description": "The External Account to link to this Ledger Account. This can only be specified on leaf Ledger Accounts. See [Reconcile payments](https://fragment.dev/
|
|
1096
|
+
"description": "The External Account to link to this Ledger Account. This can only be specified on leaf Ledger Accounts. See [Reconcile payments](https://fragment.dev/guides/reconcile-payments).",
|
|
822
1097
|
"type": {
|
|
823
1098
|
"kind": "INPUT_OBJECT",
|
|
824
1099
|
"name": "ExternalAccountMatchInput",
|
|
@@ -1064,6 +1339,32 @@
|
|
|
1064
1339
|
"enumValues": null,
|
|
1065
1340
|
"possibleTypes": null
|
|
1066
1341
|
},
|
|
1342
|
+
{
|
|
1343
|
+
"kind": "UNION",
|
|
1344
|
+
"name": "CreatePaymentResponse",
|
|
1345
|
+
"description": null,
|
|
1346
|
+
"fields": null,
|
|
1347
|
+
"inputFields": null,
|
|
1348
|
+
"interfaces": null,
|
|
1349
|
+
"enumValues": null,
|
|
1350
|
+
"possibleTypes": [
|
|
1351
|
+
{
|
|
1352
|
+
"kind": "OBJECT",
|
|
1353
|
+
"name": "BadRequestError",
|
|
1354
|
+
"ofType": null
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"kind": "OBJECT",
|
|
1358
|
+
"name": "InternalError",
|
|
1359
|
+
"ofType": null
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"kind": "OBJECT",
|
|
1363
|
+
"name": "Payment",
|
|
1364
|
+
"ofType": null
|
|
1365
|
+
}
|
|
1366
|
+
]
|
|
1367
|
+
},
|
|
1067
1368
|
{
|
|
1068
1369
|
"kind": "OBJECT",
|
|
1069
1370
|
"name": "Currency",
|
|
@@ -2764,6 +3065,26 @@
|
|
|
2764
3065
|
}
|
|
2765
3066
|
},
|
|
2766
3067
|
"defaultValue": null
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"name": "within",
|
|
3071
|
+
"description": "Must fall within the given period. Supports a year (e.g. \"2026\") or a month (e.g. \"2026-05\"). To match a specific day, use `equalTo`. Cannot be combined with `withinBalanceUTCOffset`.",
|
|
3072
|
+
"type": {
|
|
3073
|
+
"kind": "SCALAR",
|
|
3074
|
+
"name": "PeriodFilter",
|
|
3075
|
+
"ofType": null
|
|
3076
|
+
},
|
|
3077
|
+
"defaultValue": null
|
|
3078
|
+
},
|
|
3079
|
+
{
|
|
3080
|
+
"name": "withinBalanceUTCOffset",
|
|
3081
|
+
"description": "Must fall within the given period, taking into account the Ledger's `balanceUTCOffset`. Supports a year (e.g. \"2026\") or a month (e.g. \"2026-05\"). Cannot be combined with `within`.",
|
|
3082
|
+
"type": {
|
|
3083
|
+
"kind": "SCALAR",
|
|
3084
|
+
"name": "PeriodFilter",
|
|
3085
|
+
"ofType": null
|
|
3086
|
+
},
|
|
3087
|
+
"defaultValue": null
|
|
2767
3088
|
}
|
|
2768
3089
|
],
|
|
2769
3090
|
"interfaces": null,
|
|
@@ -3102,6 +3423,16 @@
|
|
|
3102
3423
|
"interfaces": [],
|
|
3103
3424
|
"enumValues": null,
|
|
3104
3425
|
"possibleTypes": [
|
|
3426
|
+
{
|
|
3427
|
+
"kind": "OBJECT",
|
|
3428
|
+
"name": "AddLedgerEntriesError",
|
|
3429
|
+
"ofType": null
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"kind": "OBJECT",
|
|
3433
|
+
"name": "AddLedgerEntryError",
|
|
3434
|
+
"ofType": null
|
|
3435
|
+
},
|
|
3105
3436
|
{
|
|
3106
3437
|
"kind": "OBJECT",
|
|
3107
3438
|
"name": "BadRequestError",
|
|
@@ -3185,7 +3516,7 @@
|
|
|
3185
3516
|
"args": [
|
|
3186
3517
|
{
|
|
3187
3518
|
"name": "after",
|
|
3188
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
3519
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
3189
3520
|
"type": {
|
|
3190
3521
|
"kind": "SCALAR",
|
|
3191
3522
|
"name": "String",
|
|
@@ -3195,7 +3526,7 @@
|
|
|
3195
3526
|
},
|
|
3196
3527
|
{
|
|
3197
3528
|
"name": "before",
|
|
3198
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
3529
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
3199
3530
|
"type": {
|
|
3200
3531
|
"kind": "SCALAR",
|
|
3201
3532
|
"name": "String",
|
|
@@ -3290,7 +3621,7 @@
|
|
|
3290
3621
|
"args": [
|
|
3291
3622
|
{
|
|
3292
3623
|
"name": "after",
|
|
3293
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
3624
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
3294
3625
|
"type": {
|
|
3295
3626
|
"kind": "SCALAR",
|
|
3296
3627
|
"name": "String",
|
|
@@ -3300,7 +3631,7 @@
|
|
|
3300
3631
|
},
|
|
3301
3632
|
{
|
|
3302
3633
|
"name": "before",
|
|
3303
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
3634
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
3304
3635
|
"type": {
|
|
3305
3636
|
"kind": "SCALAR",
|
|
3306
3637
|
"name": "String",
|
|
@@ -4502,7 +4833,7 @@
|
|
|
4502
4833
|
"args": [
|
|
4503
4834
|
{
|
|
4504
4835
|
"name": "after",
|
|
4505
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
4836
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4506
4837
|
"type": {
|
|
4507
4838
|
"kind": "SCALAR",
|
|
4508
4839
|
"name": "String",
|
|
@@ -4512,7 +4843,7 @@
|
|
|
4512
4843
|
},
|
|
4513
4844
|
{
|
|
4514
4845
|
"name": "before",
|
|
4515
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
4846
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4516
4847
|
"type": {
|
|
4517
4848
|
"kind": "SCALAR",
|
|
4518
4849
|
"name": "String",
|
|
@@ -4591,7 +4922,7 @@
|
|
|
4591
4922
|
"args": [
|
|
4592
4923
|
{
|
|
4593
4924
|
"name": "after",
|
|
4594
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
4925
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4595
4926
|
"type": {
|
|
4596
4927
|
"kind": "SCALAR",
|
|
4597
4928
|
"name": "String",
|
|
@@ -4601,7 +4932,7 @@
|
|
|
4601
4932
|
},
|
|
4602
4933
|
{
|
|
4603
4934
|
"name": "before",
|
|
4604
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
4935
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4605
4936
|
"type": {
|
|
4606
4937
|
"kind": "SCALAR",
|
|
4607
4938
|
"name": "String",
|
|
@@ -4658,7 +4989,7 @@
|
|
|
4658
4989
|
"args": [
|
|
4659
4990
|
{
|
|
4660
4991
|
"name": "after",
|
|
4661
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
4992
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4662
4993
|
"type": {
|
|
4663
4994
|
"kind": "SCALAR",
|
|
4664
4995
|
"name": "String",
|
|
@@ -4668,7 +4999,7 @@
|
|
|
4668
4999
|
},
|
|
4669
5000
|
{
|
|
4670
5001
|
"name": "before",
|
|
4671
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5002
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4672
5003
|
"type": {
|
|
4673
5004
|
"kind": "SCALAR",
|
|
4674
5005
|
"name": "String",
|
|
@@ -4678,7 +5009,7 @@
|
|
|
4678
5009
|
},
|
|
4679
5010
|
{
|
|
4680
5011
|
"name": "filter",
|
|
4681
|
-
"description": "Filter the Ledger Accounts returned. Learn more about [querying Ledger Accounts](https://fragment.dev/
|
|
5012
|
+
"description": "Filter the Ledger Accounts returned. Learn more about [querying Ledger Accounts](https://fragment.dev/guides/query-data/ledger-accounts).",
|
|
4682
5013
|
"type": {
|
|
4683
5014
|
"kind": "INPUT_OBJECT",
|
|
4684
5015
|
"name": "LedgerAccountsFilterSet",
|
|
@@ -4725,7 +5056,7 @@
|
|
|
4725
5056
|
"args": [
|
|
4726
5057
|
{
|
|
4727
5058
|
"name": "after",
|
|
4728
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5059
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4729
5060
|
"type": {
|
|
4730
5061
|
"kind": "SCALAR",
|
|
4731
5062
|
"name": "String",
|
|
@@ -4735,7 +5066,7 @@
|
|
|
4735
5066
|
},
|
|
4736
5067
|
{
|
|
4737
5068
|
"name": "before",
|
|
4738
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5069
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4739
5070
|
"type": {
|
|
4740
5071
|
"kind": "SCALAR",
|
|
4741
5072
|
"name": "String",
|
|
@@ -4745,7 +5076,7 @@
|
|
|
4745
5076
|
},
|
|
4746
5077
|
{
|
|
4747
5078
|
"name": "filter",
|
|
4748
|
-
"description": "Filter the Ledger Entries returned. Learn more about [querying Ledger Entries](https://fragment.dev/
|
|
5079
|
+
"description": "Filter the Ledger Entries returned. Learn more about [querying Ledger Entries](https://fragment.dev/guides/query-data#ledger-entries).",
|
|
4749
5080
|
"type": {
|
|
4750
5081
|
"kind": "INPUT_OBJECT",
|
|
4751
5082
|
"name": "LedgerEntriesFilterSet",
|
|
@@ -4792,7 +5123,7 @@
|
|
|
4792
5123
|
"args": [
|
|
4793
5124
|
{
|
|
4794
5125
|
"name": "after",
|
|
4795
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5126
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4796
5127
|
"type": {
|
|
4797
5128
|
"kind": "SCALAR",
|
|
4798
5129
|
"name": "String",
|
|
@@ -4802,7 +5133,7 @@
|
|
|
4802
5133
|
},
|
|
4803
5134
|
{
|
|
4804
5135
|
"name": "before",
|
|
4805
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5136
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4806
5137
|
"type": {
|
|
4807
5138
|
"kind": "SCALAR",
|
|
4808
5139
|
"name": "String",
|
|
@@ -4890,7 +5221,7 @@
|
|
|
4890
5221
|
"args": [
|
|
4891
5222
|
{
|
|
4892
5223
|
"name": "after",
|
|
4893
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5224
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4894
5225
|
"type": {
|
|
4895
5226
|
"kind": "SCALAR",
|
|
4896
5227
|
"name": "String",
|
|
@@ -4900,7 +5231,7 @@
|
|
|
4900
5231
|
},
|
|
4901
5232
|
{
|
|
4902
5233
|
"name": "before",
|
|
4903
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5234
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4904
5235
|
"type": {
|
|
4905
5236
|
"kind": "SCALAR",
|
|
4906
5237
|
"name": "String",
|
|
@@ -4957,7 +5288,7 @@
|
|
|
4957
5288
|
"args": [
|
|
4958
5289
|
{
|
|
4959
5290
|
"name": "after",
|
|
4960
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5291
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4961
5292
|
"type": {
|
|
4962
5293
|
"kind": "SCALAR",
|
|
4963
5294
|
"name": "String",
|
|
@@ -4967,7 +5298,7 @@
|
|
|
4967
5298
|
},
|
|
4968
5299
|
{
|
|
4969
5300
|
"name": "before",
|
|
4970
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5301
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
4971
5302
|
"type": {
|
|
4972
5303
|
"kind": "SCALAR",
|
|
4973
5304
|
"name": "String",
|
|
@@ -4977,7 +5308,7 @@
|
|
|
4977
5308
|
},
|
|
4978
5309
|
{
|
|
4979
5310
|
"name": "filter",
|
|
4980
|
-
"description": "Filter the Ledger Lines returned. Either the `ledgerAccount` or `path` field is required. Learn more about [querying Ledger Lines](https://fragment.dev/
|
|
5311
|
+
"description": "Filter the Ledger Lines returned. Either the `ledgerAccount` or `path` field is required. Learn more about [querying Ledger Lines](https://fragment.dev/guides/query-data#ledger-lines).",
|
|
4981
5312
|
"type": {
|
|
4982
5313
|
"kind": "NON_NULL",
|
|
4983
5314
|
"name": null,
|
|
@@ -5028,7 +5359,7 @@
|
|
|
5028
5359
|
"args": [
|
|
5029
5360
|
{
|
|
5030
5361
|
"name": "after",
|
|
5031
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5362
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5032
5363
|
"type": {
|
|
5033
5364
|
"kind": "SCALAR",
|
|
5034
5365
|
"name": "String",
|
|
@@ -5038,7 +5369,7 @@
|
|
|
5038
5369
|
},
|
|
5039
5370
|
{
|
|
5040
5371
|
"name": "before",
|
|
5041
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5372
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5042
5373
|
"type": {
|
|
5043
5374
|
"kind": "SCALAR",
|
|
5044
5375
|
"name": "String",
|
|
@@ -5344,7 +5675,7 @@
|
|
|
5344
5675
|
"args": [
|
|
5345
5676
|
{
|
|
5346
5677
|
"name": "after",
|
|
5347
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
5678
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5348
5679
|
"type": {
|
|
5349
5680
|
"kind": "SCALAR",
|
|
5350
5681
|
"name": "String",
|
|
@@ -5364,7 +5695,7 @@
|
|
|
5364
5695
|
},
|
|
5365
5696
|
{
|
|
5366
5697
|
"name": "before",
|
|
5367
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
5698
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5368
5699
|
"type": {
|
|
5369
5700
|
"kind": "SCALAR",
|
|
5370
5701
|
"name": "String",
|
|
@@ -5678,7 +6009,7 @@
|
|
|
5678
6009
|
"args": [
|
|
5679
6010
|
{
|
|
5680
6011
|
"name": "after",
|
|
5681
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6012
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5682
6013
|
"type": {
|
|
5683
6014
|
"kind": "SCALAR",
|
|
5684
6015
|
"name": "String",
|
|
@@ -5698,7 +6029,7 @@
|
|
|
5698
6029
|
},
|
|
5699
6030
|
{
|
|
5700
6031
|
"name": "before",
|
|
5701
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6032
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5702
6033
|
"type": {
|
|
5703
6034
|
"kind": "SCALAR",
|
|
5704
6035
|
"name": "String",
|
|
@@ -5824,7 +6155,7 @@
|
|
|
5824
6155
|
"args": [
|
|
5825
6156
|
{
|
|
5826
6157
|
"name": "after",
|
|
5827
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6158
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5828
6159
|
"type": {
|
|
5829
6160
|
"kind": "SCALAR",
|
|
5830
6161
|
"name": "String",
|
|
@@ -5834,7 +6165,7 @@
|
|
|
5834
6165
|
},
|
|
5835
6166
|
{
|
|
5836
6167
|
"name": "before",
|
|
5837
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6168
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
5838
6169
|
"type": {
|
|
5839
6170
|
"kind": "SCALAR",
|
|
5840
6171
|
"name": "String",
|
|
@@ -6017,7 +6348,7 @@
|
|
|
6017
6348
|
"args": [
|
|
6018
6349
|
{
|
|
6019
6350
|
"name": "after",
|
|
6020
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6351
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6021
6352
|
"type": {
|
|
6022
6353
|
"kind": "SCALAR",
|
|
6023
6354
|
"name": "String",
|
|
@@ -6027,7 +6358,7 @@
|
|
|
6027
6358
|
},
|
|
6028
6359
|
{
|
|
6029
6360
|
"name": "before",
|
|
6030
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6361
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6031
6362
|
"type": {
|
|
6032
6363
|
"kind": "SCALAR",
|
|
6033
6364
|
"name": "String",
|
|
@@ -6090,7 +6421,7 @@
|
|
|
6090
6421
|
"args": [
|
|
6091
6422
|
{
|
|
6092
6423
|
"name": "after",
|
|
6093
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6424
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6094
6425
|
"type": {
|
|
6095
6426
|
"kind": "SCALAR",
|
|
6096
6427
|
"name": "String",
|
|
@@ -6100,7 +6431,7 @@
|
|
|
6100
6431
|
},
|
|
6101
6432
|
{
|
|
6102
6433
|
"name": "before",
|
|
6103
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6434
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6104
6435
|
"type": {
|
|
6105
6436
|
"kind": "SCALAR",
|
|
6106
6437
|
"name": "String",
|
|
@@ -6110,7 +6441,7 @@
|
|
|
6110
6441
|
},
|
|
6111
6442
|
{
|
|
6112
6443
|
"name": "filter",
|
|
6113
|
-
"description": "Filter the Ledger Lines returned. Learn more about [querying Ledger Lines](https://fragment.dev/
|
|
6444
|
+
"description": "Filter the Ledger Lines returned. Learn more about [querying Ledger Lines](https://fragment.dev/guides/query-data#ledger-lines).",
|
|
6114
6445
|
"type": {
|
|
6115
6446
|
"kind": "INPUT_OBJECT",
|
|
6116
6447
|
"name": "LedgerLinesFilterSet",
|
|
@@ -6381,7 +6712,7 @@
|
|
|
6381
6712
|
"args": [
|
|
6382
6713
|
{
|
|
6383
6714
|
"name": "after",
|
|
6384
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6715
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6385
6716
|
"type": {
|
|
6386
6717
|
"kind": "SCALAR",
|
|
6387
6718
|
"name": "String",
|
|
@@ -6401,7 +6732,7 @@
|
|
|
6401
6732
|
},
|
|
6402
6733
|
{
|
|
6403
6734
|
"name": "before",
|
|
6404
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6735
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6405
6736
|
"type": {
|
|
6406
6737
|
"kind": "SCALAR",
|
|
6407
6738
|
"name": "String",
|
|
@@ -6561,6 +6892,18 @@
|
|
|
6561
6892
|
"isDeprecated": false,
|
|
6562
6893
|
"deprecationReason": null
|
|
6563
6894
|
},
|
|
6895
|
+
{
|
|
6896
|
+
"name": "payment",
|
|
6897
|
+
"description": "Payment configuration of this Ledger Account, if it is a payment account.",
|
|
6898
|
+
"args": [],
|
|
6899
|
+
"type": {
|
|
6900
|
+
"kind": "OBJECT",
|
|
6901
|
+
"name": "LedgerAccountPayment",
|
|
6902
|
+
"ofType": null
|
|
6903
|
+
},
|
|
6904
|
+
"isDeprecated": false,
|
|
6905
|
+
"deprecationReason": null
|
|
6906
|
+
},
|
|
6564
6907
|
{
|
|
6565
6908
|
"name": "postedWindow",
|
|
6566
6909
|
"description": "The posted timestamp window for this clearing account, representing the earliest and latest\nposted timestamps across all currencies.\n\nThis field is null when the Ledger Account is not configured to be a Clearing account\nor when no entries have been posted to this account.",
|
|
@@ -6595,7 +6938,7 @@
|
|
|
6595
6938
|
"args": [
|
|
6596
6939
|
{
|
|
6597
6940
|
"name": "after",
|
|
6598
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
6941
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6599
6942
|
"type": {
|
|
6600
6943
|
"kind": "SCALAR",
|
|
6601
6944
|
"name": "String",
|
|
@@ -6605,7 +6948,7 @@
|
|
|
6605
6948
|
},
|
|
6606
6949
|
{
|
|
6607
6950
|
"name": "before",
|
|
6608
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
6951
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6609
6952
|
"type": {
|
|
6610
6953
|
"kind": "SCALAR",
|
|
6611
6954
|
"name": "String",
|
|
@@ -6719,7 +7062,7 @@
|
|
|
6719
7062
|
"fields": [
|
|
6720
7063
|
{
|
|
6721
7064
|
"name": "ownBalance",
|
|
6722
|
-
"description": "A condition that the `ownBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/
|
|
7065
|
+
"description": "A condition that the `ownBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/guides/read-balances) for more on the different types of Ledger Account balances.",
|
|
6723
7066
|
"args": [],
|
|
6724
7067
|
"type": {
|
|
6725
7068
|
"kind": "OBJECT",
|
|
@@ -6731,7 +7074,7 @@
|
|
|
6731
7074
|
},
|
|
6732
7075
|
{
|
|
6733
7076
|
"name": "totalBalance",
|
|
6734
|
-
"description": "A condition that the `totalBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/
|
|
7077
|
+
"description": "A condition that the `totalBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/guides/read-balances) for more on the different types of Ledger Account balances.",
|
|
6735
7078
|
"args": [],
|
|
6736
7079
|
"type": {
|
|
6737
7080
|
"kind": "OBJECT",
|
|
@@ -6781,7 +7124,7 @@
|
|
|
6781
7124
|
{
|
|
6782
7125
|
"kind": "OBJECT",
|
|
6783
7126
|
"name": "LedgerAccountConsistencyConfig",
|
|
6784
|
-
"description": "The consistency configuration of a Ledger Account's balance updates.\nSee [Configure consistency](https://fragment.dev/
|
|
7127
|
+
"description": "The consistency configuration of a Ledger Account's balance updates.\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6785
7128
|
"fields": [
|
|
6786
7129
|
{
|
|
6787
7130
|
"name": "lines",
|
|
@@ -6801,7 +7144,7 @@
|
|
|
6801
7144
|
},
|
|
6802
7145
|
{
|
|
6803
7146
|
"name": "ownBalanceUpdates",
|
|
6804
|
-
"description": "If set to `strong`, then a Ledger Account's `ownBalance` updates will be strongly consistent with\nthe API response. This Ledger Account's balance will be updated and\navailable for strongly consistent reads once you receive an API response.\n\nOtherwise if not set or set to `eventual`, `ownBalance` updates are applied\nasynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7147
|
+
"description": "If set to `strong`, then a Ledger Account's `ownBalance` updates will be strongly consistent with\nthe API response. This Ledger Account's balance will be updated and\navailable for strongly consistent reads once you receive an API response.\n\nOtherwise if not set or set to `eventual`, `ownBalance` updates are applied\nasynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6805
7148
|
"args": [],
|
|
6806
7149
|
"type": {
|
|
6807
7150
|
"kind": "NON_NULL",
|
|
@@ -6817,7 +7160,7 @@
|
|
|
6817
7160
|
},
|
|
6818
7161
|
{
|
|
6819
7162
|
"name": "totalBalanceUpdates",
|
|
6820
|
-
"description": "If set to `strong`, then a Ledger Account's `ownBalance`, `childBalance`, and `balance` fields' updates will be strongly consistent with\nthe API response. This Ledger Account's balance will be updated and\navailable for strongly consistent reads once you receive an API response.\n\nOtherwise if not set or set to `eventual`, updates are applied\nasynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7163
|
+
"description": "If set to `strong`, then a Ledger Account's `ownBalance`, `childBalance`, and `balance` fields' updates will be strongly consistent with\nthe API response. This Ledger Account's balance will be updated and\navailable for strongly consistent reads once you receive an API response.\n\nOtherwise if not set or set to `eventual`, updates are applied\nasynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6821
7164
|
"args": [],
|
|
6822
7165
|
"type": {
|
|
6823
7166
|
"kind": "ENUM",
|
|
@@ -6836,12 +7179,12 @@
|
|
|
6836
7179
|
{
|
|
6837
7180
|
"kind": "INPUT_OBJECT",
|
|
6838
7181
|
"name": "LedgerAccountConsistencyConfigInput",
|
|
6839
|
-
"description": "The payload configuring the consistency for this Ledger Account.\nSee [Configure consistency](https://fragment.dev/
|
|
7182
|
+
"description": "The payload configuring the consistency for this Ledger Account.\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6840
7183
|
"fields": null,
|
|
6841
7184
|
"inputFields": [
|
|
6842
7185
|
{
|
|
6843
7186
|
"name": "groups",
|
|
6844
|
-
"description": "The consistency configuration for Ledger Entry Groups affecting this account.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7187
|
+
"description": "The consistency configuration for Ledger Entry Groups affecting this account.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6845
7188
|
"type": {
|
|
6846
7189
|
"kind": "LIST",
|
|
6847
7190
|
"name": null,
|
|
@@ -6859,7 +7202,7 @@
|
|
|
6859
7202
|
},
|
|
6860
7203
|
{
|
|
6861
7204
|
"name": "lines",
|
|
6862
|
-
"description": "If set to `strong`, then a Ledger Account's `lines` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `lines` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7205
|
+
"description": "If set to `strong`, then a Ledger Account's `lines` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `lines` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6863
7206
|
"type": {
|
|
6864
7207
|
"kind": "ENUM",
|
|
6865
7208
|
"name": "LedgerLinesConsistencyMode",
|
|
@@ -6869,7 +7212,7 @@
|
|
|
6869
7212
|
},
|
|
6870
7213
|
{
|
|
6871
7214
|
"name": "ownBalanceUpdates",
|
|
6872
|
-
"description": "If set to `strong`, then a Ledger Account's `ownBalance` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `ownBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7215
|
+
"description": "If set to `strong`, then a Ledger Account's `ownBalance` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `ownBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6873
7216
|
"type": {
|
|
6874
7217
|
"kind": "ENUM",
|
|
6875
7218
|
"name": "BalanceUpdateConsistencyMode",
|
|
@@ -6879,7 +7222,7 @@
|
|
|
6879
7222
|
},
|
|
6880
7223
|
{
|
|
6881
7224
|
"name": "totalBalanceUpdates",
|
|
6882
|
-
"description": "EXPERIMENTAL: If set to `strong`, then a Ledger Account's `totalBalance` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `totalBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7225
|
+
"description": "EXPERIMENTAL: If set to `strong`, then a Ledger Account's `totalBalance` updates will be strongly consistent with the API response.\nThis Ledger Account's balance will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, `totalBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
6883
7226
|
"type": {
|
|
6884
7227
|
"kind": "ENUM",
|
|
6885
7228
|
"name": "BalanceUpdateConsistencyMode",
|
|
@@ -6931,7 +7274,7 @@
|
|
|
6931
7274
|
"args": [
|
|
6932
7275
|
{
|
|
6933
7276
|
"name": "after",
|
|
6934
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
7277
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6935
7278
|
"type": {
|
|
6936
7279
|
"kind": "SCALAR",
|
|
6937
7280
|
"name": "String",
|
|
@@ -6941,7 +7284,7 @@
|
|
|
6941
7284
|
},
|
|
6942
7285
|
{
|
|
6943
7286
|
"name": "before",
|
|
6944
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
7287
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6945
7288
|
"type": {
|
|
6946
7289
|
"kind": "SCALAR",
|
|
6947
7290
|
"name": "String",
|
|
@@ -6988,7 +7331,7 @@
|
|
|
6988
7331
|
"args": [
|
|
6989
7332
|
{
|
|
6990
7333
|
"name": "after",
|
|
6991
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
7334
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
6992
7335
|
"type": {
|
|
6993
7336
|
"kind": "SCALAR",
|
|
6994
7337
|
"name": "String",
|
|
@@ -6998,7 +7341,7 @@
|
|
|
6998
7341
|
},
|
|
6999
7342
|
{
|
|
7000
7343
|
"name": "before",
|
|
7001
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
7344
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
7002
7345
|
"type": {
|
|
7003
7346
|
"kind": "SCALAR",
|
|
7004
7347
|
"name": "String",
|
|
@@ -7210,7 +7553,7 @@
|
|
|
7210
7553
|
},
|
|
7211
7554
|
{
|
|
7212
7555
|
"name": "ownBalanceUpdates",
|
|
7213
|
-
"description": "If set to `strong`, then Ledger Entry Group `ownBalance`s updates for this account will be strongly consistent with the API response.\nThis Ledger Account's Ledger Entry Group balances will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, Ledger Entry Group `ownBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/
|
|
7556
|
+
"description": "If set to `strong`, then Ledger Entry Group `ownBalance`s updates for this account will be strongly consistent with the API response.\nThis Ledger Account's Ledger Entry Group balances will be updated and available for strongly consistent reads before you receive an API response.\n\nOtherwise if unset or set to `eventual`, Ledger Entry Group `ownBalance` updates are applied asynchronously and may not be immediately reflected in queries.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
7214
7557
|
"type": {
|
|
7215
7558
|
"kind": "NON_NULL",
|
|
7216
7559
|
"name": null,
|
|
@@ -7268,6 +7611,33 @@
|
|
|
7268
7611
|
"enumValues": null,
|
|
7269
7612
|
"possibleTypes": null
|
|
7270
7613
|
},
|
|
7614
|
+
{
|
|
7615
|
+
"kind": "OBJECT",
|
|
7616
|
+
"name": "LedgerAccountPayment",
|
|
7617
|
+
"description": "Payment configuration of a Ledger Account.",
|
|
7618
|
+
"fields": [
|
|
7619
|
+
{
|
|
7620
|
+
"name": "penguin",
|
|
7621
|
+
"description": null,
|
|
7622
|
+
"args": [],
|
|
7623
|
+
"type": {
|
|
7624
|
+
"kind": "NON_NULL",
|
|
7625
|
+
"name": null,
|
|
7626
|
+
"ofType": {
|
|
7627
|
+
"kind": "SCALAR",
|
|
7628
|
+
"name": "Boolean",
|
|
7629
|
+
"ofType": null
|
|
7630
|
+
}
|
|
7631
|
+
},
|
|
7632
|
+
"isDeprecated": false,
|
|
7633
|
+
"deprecationReason": null
|
|
7634
|
+
}
|
|
7635
|
+
],
|
|
7636
|
+
"inputFields": null,
|
|
7637
|
+
"interfaces": [],
|
|
7638
|
+
"enumValues": null,
|
|
7639
|
+
"possibleTypes": null
|
|
7640
|
+
},
|
|
7271
7641
|
{
|
|
7272
7642
|
"kind": "INPUT_OBJECT",
|
|
7273
7643
|
"name": "LedgerAccountTypeFilter",
|
|
@@ -7527,7 +7897,7 @@
|
|
|
7527
7897
|
"args": [
|
|
7528
7898
|
{
|
|
7529
7899
|
"name": "after",
|
|
7530
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
7900
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
7531
7901
|
"type": {
|
|
7532
7902
|
"kind": "SCALAR",
|
|
7533
7903
|
"name": "String",
|
|
@@ -7537,7 +7907,7 @@
|
|
|
7537
7907
|
},
|
|
7538
7908
|
{
|
|
7539
7909
|
"name": "before",
|
|
7540
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
7910
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
7541
7911
|
"type": {
|
|
7542
7912
|
"kind": "SCALAR",
|
|
7543
7913
|
"name": "String",
|
|
@@ -7584,7 +7954,7 @@
|
|
|
7584
7954
|
"args": [
|
|
7585
7955
|
{
|
|
7586
7956
|
"name": "after",
|
|
7587
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
7957
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
7588
7958
|
"type": {
|
|
7589
7959
|
"kind": "SCALAR",
|
|
7590
7960
|
"name": "String",
|
|
@@ -7594,7 +7964,7 @@
|
|
|
7594
7964
|
},
|
|
7595
7965
|
{
|
|
7596
7966
|
"name": "before",
|
|
7597
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
7967
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
7598
7968
|
"type": {
|
|
7599
7969
|
"kind": "SCALAR",
|
|
7600
7970
|
"name": "String",
|
|
@@ -7844,7 +8214,7 @@
|
|
|
7844
8214
|
"inputFields": [
|
|
7845
8215
|
{
|
|
7846
8216
|
"name": "date",
|
|
7847
|
-
"description":
|
|
8217
|
+
"description": "Use this filter to filter Ledger Entries by their `posted` date.",
|
|
7848
8218
|
"type": {
|
|
7849
8219
|
"kind": "INPUT_OBJECT",
|
|
7850
8220
|
"name": "DateFilter",
|
|
@@ -7894,7 +8264,7 @@
|
|
|
7894
8264
|
},
|
|
7895
8265
|
{
|
|
7896
8266
|
"name": "posted",
|
|
7897
|
-
"description":
|
|
8267
|
+
"description": "Use this filter to filter Ledger Entries by their `posted` timestamp.",
|
|
7898
8268
|
"type": {
|
|
7899
8269
|
"kind": "INPUT_OBJECT",
|
|
7900
8270
|
"name": "DateTimeFilter",
|
|
@@ -8515,7 +8885,7 @@
|
|
|
8515
8885
|
"args": [
|
|
8516
8886
|
{
|
|
8517
8887
|
"name": "after",
|
|
8518
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
8888
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8519
8889
|
"type": {
|
|
8520
8890
|
"kind": "SCALAR",
|
|
8521
8891
|
"name": "String",
|
|
@@ -8525,7 +8895,7 @@
|
|
|
8525
8895
|
},
|
|
8526
8896
|
{
|
|
8527
8897
|
"name": "before",
|
|
8528
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
8898
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8529
8899
|
"type": {
|
|
8530
8900
|
"kind": "SCALAR",
|
|
8531
8901
|
"name": "String",
|
|
@@ -8572,7 +8942,7 @@
|
|
|
8572
8942
|
"args": [
|
|
8573
8943
|
{
|
|
8574
8944
|
"name": "after",
|
|
8575
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
8945
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8576
8946
|
"type": {
|
|
8577
8947
|
"kind": "SCALAR",
|
|
8578
8948
|
"name": "String",
|
|
@@ -8582,7 +8952,7 @@
|
|
|
8582
8952
|
},
|
|
8583
8953
|
{
|
|
8584
8954
|
"name": "before",
|
|
8585
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
8955
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8586
8956
|
"type": {
|
|
8587
8957
|
"kind": "SCALAR",
|
|
8588
8958
|
"name": "String",
|
|
@@ -8809,7 +9179,7 @@
|
|
|
8809
9179
|
"args": [
|
|
8810
9180
|
{
|
|
8811
9181
|
"name": "after",
|
|
8812
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
9182
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8813
9183
|
"type": {
|
|
8814
9184
|
"kind": "SCALAR",
|
|
8815
9185
|
"name": "String",
|
|
@@ -8819,7 +9189,7 @@
|
|
|
8819
9189
|
},
|
|
8820
9190
|
{
|
|
8821
9191
|
"name": "before",
|
|
8822
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
9192
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8823
9193
|
"type": {
|
|
8824
9194
|
"kind": "SCALAR",
|
|
8825
9195
|
"name": "String",
|
|
@@ -8936,7 +9306,7 @@
|
|
|
8936
9306
|
"args": [
|
|
8937
9307
|
{
|
|
8938
9308
|
"name": "after",
|
|
8939
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
9309
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8940
9310
|
"type": {
|
|
8941
9311
|
"kind": "SCALAR",
|
|
8942
9312
|
"name": "String",
|
|
@@ -8946,7 +9316,7 @@
|
|
|
8946
9316
|
},
|
|
8947
9317
|
{
|
|
8948
9318
|
"name": "before",
|
|
8949
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
9319
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
8950
9320
|
"type": {
|
|
8951
9321
|
"kind": "SCALAR",
|
|
8952
9322
|
"name": "String",
|
|
@@ -10507,6 +10877,45 @@
|
|
|
10507
10877
|
"enumValues": null,
|
|
10508
10878
|
"possibleTypes": null
|
|
10509
10879
|
},
|
|
10880
|
+
{
|
|
10881
|
+
"kind": "INPUT_OBJECT",
|
|
10882
|
+
"name": "LedgerLineTagInput",
|
|
10883
|
+
"description": null,
|
|
10884
|
+
"fields": null,
|
|
10885
|
+
"inputFields": [
|
|
10886
|
+
{
|
|
10887
|
+
"name": "key",
|
|
10888
|
+
"description": "The key of this tag. Can be up to 128 characters long.",
|
|
10889
|
+
"type": {
|
|
10890
|
+
"kind": "NON_NULL",
|
|
10891
|
+
"name": null,
|
|
10892
|
+
"ofType": {
|
|
10893
|
+
"kind": "SCALAR",
|
|
10894
|
+
"name": "SafeString",
|
|
10895
|
+
"ofType": null
|
|
10896
|
+
}
|
|
10897
|
+
},
|
|
10898
|
+
"defaultValue": null
|
|
10899
|
+
},
|
|
10900
|
+
{
|
|
10901
|
+
"name": "value",
|
|
10902
|
+
"description": "The value associated with this tag's key. Can be up to 128 characters long.",
|
|
10903
|
+
"type": {
|
|
10904
|
+
"kind": "NON_NULL",
|
|
10905
|
+
"name": null,
|
|
10906
|
+
"ofType": {
|
|
10907
|
+
"kind": "SCALAR",
|
|
10908
|
+
"name": "SafeString",
|
|
10909
|
+
"ofType": null
|
|
10910
|
+
}
|
|
10911
|
+
},
|
|
10912
|
+
"defaultValue": null
|
|
10913
|
+
}
|
|
10914
|
+
],
|
|
10915
|
+
"interfaces": null,
|
|
10916
|
+
"enumValues": null,
|
|
10917
|
+
"possibleTypes": null
|
|
10918
|
+
},
|
|
10510
10919
|
{
|
|
10511
10920
|
"kind": "OBJECT",
|
|
10512
10921
|
"name": "LedgerLinesConnection",
|
|
@@ -10609,7 +11018,7 @@
|
|
|
10609
11018
|
},
|
|
10610
11019
|
{
|
|
10611
11020
|
"name": "date",
|
|
10612
|
-
"description": "
|
|
11021
|
+
"description": "Use this filter to filter Ledger Lines by their `posted` date.",
|
|
10613
11022
|
"type": {
|
|
10614
11023
|
"kind": "INPUT_OBJECT",
|
|
10615
11024
|
"name": "DateFilter",
|
|
@@ -10659,7 +11068,7 @@
|
|
|
10659
11068
|
},
|
|
10660
11069
|
{
|
|
10661
11070
|
"name": "path",
|
|
10662
|
-
"description": "A filter that string matches the account path. Wildcards ('*') can be used to return lines across multiple accounts.\nTo search for all instances of a a Ledger Account template, use the `matches` filter with an wildcard character in place of the template value e.g. `assets/user:*`. This returns lines from all instances of this template, interleaved by `posted` timestamp.\nTo search for all descendant Ledger Accounts under a given path, use a trailing `/*` in the `matches` filter e.g. `assets/user:user-1>/*`. This returns lines from all descendants at any depth, but not lines from the parent account at `assets/user:user-1>`.\nCannot be combined with `ledgerAccount` filter. Not allowed when querying via `LedgerAccount.lines`. You cannot use wildcards for both descendant and template instance matching in the same query.",
|
|
11071
|
+
"description": "A filter that string matches the account path. Wildcards ('*') can be used to return lines across multiple accounts.\nTo search for all instances of a a Ledger Account template, use the `matches` filter with an wildcard character in place of the template value e.g. `assets/user:*`. This returns lines from all instances of this template, interleaved by `posted` timestamp.\nTo search for all descendant Ledger Accounts under a given path, use a trailing `/*` in the `matches` filter e.g. `assets/user:user-1>/*`. This returns lines from all descendants at any depth, but not lines from the parent account at `assets/user:user-1>`.\nTo OR multiple `matches` patterns and get a single paginated list, use `matchesAny` — e.g. `matchesAny: [\"assets/user:user-1/*\", \"assets/user:user-2/*\"]` returns descendants of both prefixes interleaved by `posted` timestamp.\nCannot be combined with `ledgerAccount` filter. Not allowed when querying via `LedgerAccount.lines`. You cannot use wildcards for both descendant and template instance matching in the same query.",
|
|
10663
11072
|
"type": {
|
|
10664
11073
|
"kind": "INPUT_OBJECT",
|
|
10665
11074
|
"name": "StringMatchFilter",
|
|
@@ -10669,7 +11078,7 @@
|
|
|
10669
11078
|
},
|
|
10670
11079
|
{
|
|
10671
11080
|
"name": "posted",
|
|
10672
|
-
"description": "
|
|
11081
|
+
"description": "Use this filter to filter Ledger Lines by their `posted` timestamp.",
|
|
10673
11082
|
"type": {
|
|
10674
11083
|
"kind": "INPUT_OBJECT",
|
|
10675
11084
|
"name": "DateTimeFilter",
|
|
@@ -11412,6 +11821,45 @@
|
|
|
11412
11821
|
"isDeprecated": false,
|
|
11413
11822
|
"deprecationReason": null
|
|
11414
11823
|
},
|
|
11824
|
+
{
|
|
11825
|
+
"name": "addLedgerEntries",
|
|
11826
|
+
"description": "Batch version of [addLedgerEntry](http://localhost:3001/api-reference/ledger-mutations#addledgerentry).\n\nAdds a batch of Ledger Entries in one synchronous and atomic transaction. Either every entry is added or none are.",
|
|
11827
|
+
"args": [
|
|
11828
|
+
{
|
|
11829
|
+
"name": "entries",
|
|
11830
|
+
"description": "The Ledger Entries to post, each with its own [Idempotency Key](https://fragment.dev/api-reference/api-overview#idempotency).",
|
|
11831
|
+
"type": {
|
|
11832
|
+
"kind": "NON_NULL",
|
|
11833
|
+
"name": null,
|
|
11834
|
+
"ofType": {
|
|
11835
|
+
"kind": "LIST",
|
|
11836
|
+
"name": null,
|
|
11837
|
+
"ofType": {
|
|
11838
|
+
"kind": "NON_NULL",
|
|
11839
|
+
"name": null,
|
|
11840
|
+
"ofType": {
|
|
11841
|
+
"kind": "INPUT_OBJECT",
|
|
11842
|
+
"name": "AddLedgerEntryInput",
|
|
11843
|
+
"ofType": null
|
|
11844
|
+
}
|
|
11845
|
+
}
|
|
11846
|
+
}
|
|
11847
|
+
},
|
|
11848
|
+
"defaultValue": null
|
|
11849
|
+
}
|
|
11850
|
+
],
|
|
11851
|
+
"type": {
|
|
11852
|
+
"kind": "NON_NULL",
|
|
11853
|
+
"name": null,
|
|
11854
|
+
"ofType": {
|
|
11855
|
+
"kind": "UNION",
|
|
11856
|
+
"name": "AddLedgerEntriesResponse",
|
|
11857
|
+
"ofType": null
|
|
11858
|
+
}
|
|
11859
|
+
},
|
|
11860
|
+
"isDeprecated": false,
|
|
11861
|
+
"deprecationReason": null
|
|
11862
|
+
},
|
|
11415
11863
|
{
|
|
11416
11864
|
"name": "addLedgerEntry",
|
|
11417
11865
|
"description": "Adds a Ledger Entry to a Ledger. This Ledger Entry cannot be into a Linked Ledger Account. For that, use [reconcileTx](https://fragment.dev/api-reference/api-mutations#reconciletx)",
|
|
@@ -11490,7 +11938,7 @@
|
|
|
11490
11938
|
},
|
|
11491
11939
|
{
|
|
11492
11940
|
"name": "createCustomLink",
|
|
11493
|
-
"description": "Custom Links let you integrate external systems that don't have native support. See [Custom Links](https://fragment.dev/
|
|
11941
|
+
"description": "Custom Links let you integrate external systems that don't have native support. See [Custom Links](https://fragment.dev/guides/sync-payments#custom-link)",
|
|
11494
11942
|
"args": [
|
|
11495
11943
|
{
|
|
11496
11944
|
"name": "ik",
|
|
@@ -11700,6 +12148,65 @@
|
|
|
11700
12148
|
"isDeprecated": false,
|
|
11701
12149
|
"deprecationReason": null
|
|
11702
12150
|
},
|
|
12151
|
+
{
|
|
12152
|
+
"name": "createPayment",
|
|
12153
|
+
"description": "EXPERIMENTAL — subject to change.\n\nCreate a Payment.",
|
|
12154
|
+
"args": [
|
|
12155
|
+
{
|
|
12156
|
+
"name": "amount",
|
|
12157
|
+
"description": "The amount in cents, between 100 and 10000000 inclusive.",
|
|
12158
|
+
"type": {
|
|
12159
|
+
"kind": "NON_NULL",
|
|
12160
|
+
"name": null,
|
|
12161
|
+
"ofType": {
|
|
12162
|
+
"kind": "SCALAR",
|
|
12163
|
+
"name": "Int96",
|
|
12164
|
+
"ofType": null
|
|
12165
|
+
}
|
|
12166
|
+
},
|
|
12167
|
+
"defaultValue": null
|
|
12168
|
+
},
|
|
12169
|
+
{
|
|
12170
|
+
"name": "ik",
|
|
12171
|
+
"description": "The [Idempotency Key](https://fragment.dev/api-reference/api-overview#idempotency)",
|
|
12172
|
+
"type": {
|
|
12173
|
+
"kind": "NON_NULL",
|
|
12174
|
+
"name": null,
|
|
12175
|
+
"ofType": {
|
|
12176
|
+
"kind": "SCALAR",
|
|
12177
|
+
"name": "SafeString",
|
|
12178
|
+
"ofType": null
|
|
12179
|
+
}
|
|
12180
|
+
},
|
|
12181
|
+
"defaultValue": null
|
|
12182
|
+
},
|
|
12183
|
+
{
|
|
12184
|
+
"name": "ledger",
|
|
12185
|
+
"description": "The Ledger this Payment belongs to.",
|
|
12186
|
+
"type": {
|
|
12187
|
+
"kind": "NON_NULL",
|
|
12188
|
+
"name": null,
|
|
12189
|
+
"ofType": {
|
|
12190
|
+
"kind": "INPUT_OBJECT",
|
|
12191
|
+
"name": "LedgerMatchInput",
|
|
12192
|
+
"ofType": null
|
|
12193
|
+
}
|
|
12194
|
+
},
|
|
12195
|
+
"defaultValue": null
|
|
12196
|
+
}
|
|
12197
|
+
],
|
|
12198
|
+
"type": {
|
|
12199
|
+
"kind": "NON_NULL",
|
|
12200
|
+
"name": null,
|
|
12201
|
+
"ofType": {
|
|
12202
|
+
"kind": "UNION",
|
|
12203
|
+
"name": "CreatePaymentResponse",
|
|
12204
|
+
"ofType": null
|
|
12205
|
+
}
|
|
12206
|
+
},
|
|
12207
|
+
"isDeprecated": false,
|
|
12208
|
+
"deprecationReason": null
|
|
12209
|
+
},
|
|
11703
12210
|
{
|
|
11704
12211
|
"name": "deleteCustomTxs",
|
|
11705
12212
|
"description": "Delete Txs on a Custom Link. Once deleted, a Tx will not show up in listing queries, but can be resolved by if you lookup by its Fragment ID.",
|
|
@@ -11834,7 +12341,7 @@
|
|
|
11834
12341
|
},
|
|
11835
12342
|
{
|
|
11836
12343
|
"name": "reconcileTx",
|
|
11837
|
-
"description": "This mutation is used to [reconcile](https://fragment.dev/
|
|
12344
|
+
"description": "This mutation is used to [reconcile](https://fragment.dev/guides/reconcile-payments#reconcile-a-tx) transactions from an external system into a Ledger Entry. This mutation does not require an idempotency key since a transaction can only be reconciled once per Linked Ledger Account. If you are reconciling a transfer between two Link Accounts which are both linked to the same Ledger, use a transit account in between to split the transfer into two `reconcileTx` calls.",
|
|
11838
12345
|
"args": [
|
|
11839
12346
|
{
|
|
11840
12347
|
"name": "entry",
|
|
@@ -11927,7 +12434,7 @@
|
|
|
11927
12434
|
},
|
|
11928
12435
|
{
|
|
11929
12436
|
"name": "syncCustomAccounts",
|
|
11930
|
-
"description": "Once you've created a [Custom Link](https://fragment.dev/
|
|
12437
|
+
"description": "Once you've created a [Custom Link](https://fragment.dev/guides/sync-payments#custom-link), create accounts under it using this mutation. Each Custom Account is an immutable, single-entry view of all the transactions in the external account. You can sync up to 100 Custom Accounts in one API call.",
|
|
11931
12438
|
"args": [
|
|
11932
12439
|
{
|
|
11933
12440
|
"name": "accounts",
|
|
@@ -11980,7 +12487,7 @@
|
|
|
11980
12487
|
},
|
|
11981
12488
|
{
|
|
11982
12489
|
"name": "syncCustomTxs",
|
|
11983
|
-
"description": "You can create transactions under a Custom Account in a [Custom Link](https://fragment.dev/
|
|
12490
|
+
"description": "You can create transactions under a Custom Account in a [Custom Link](https://fragment.dev/guides/sync-payments#custom-link) using this mutation. Once you've imported transactions, you can use the reconcileTx mutation to add them to a Ledger via the Linked Ledger Account. You can sync up to 100 Custom Transactions in one API call.",
|
|
11984
12491
|
"args": [
|
|
11985
12492
|
{
|
|
11986
12493
|
"name": "link",
|
|
@@ -12141,7 +12648,7 @@
|
|
|
12141
12648
|
},
|
|
12142
12649
|
{
|
|
12143
12650
|
"name": "update",
|
|
12144
|
-
"description": "The payload containing the fields to update. Only a Ledger Entry's tags can be updated.",
|
|
12651
|
+
"description": "The payload containing the fields to update. Only a Ledger Entry's tags and its Ledger Lines' tags can be updated.",
|
|
12145
12652
|
"type": {
|
|
12146
12653
|
"kind": "NON_NULL",
|
|
12147
12654
|
"name": null,
|
|
@@ -12175,7 +12682,7 @@
|
|
|
12175
12682
|
{
|
|
12176
12683
|
"kind": "OBJECT",
|
|
12177
12684
|
"name": "PageInfo",
|
|
12178
|
-
"description": "An object containing [pagination](https://fragment.dev/
|
|
12685
|
+
"description": "An object containing [pagination](https://fragment.dev/guides/query-data#basics-pagination) details.",
|
|
12179
12686
|
"fields": [
|
|
12180
12687
|
{
|
|
12181
12688
|
"name": "endCursor",
|
|
@@ -12259,6 +12766,78 @@
|
|
|
12259
12766
|
"enumValues": null,
|
|
12260
12767
|
"possibleTypes": null
|
|
12261
12768
|
},
|
|
12769
|
+
{
|
|
12770
|
+
"kind": "OBJECT",
|
|
12771
|
+
"name": "Payment",
|
|
12772
|
+
"description": null,
|
|
12773
|
+
"fields": [
|
|
12774
|
+
{
|
|
12775
|
+
"name": "clientSecret",
|
|
12776
|
+
"description": "The secret handed to the payments SDK to render the payment method capture.",
|
|
12777
|
+
"args": [],
|
|
12778
|
+
"type": {
|
|
12779
|
+
"kind": "NON_NULL",
|
|
12780
|
+
"name": null,
|
|
12781
|
+
"ofType": {
|
|
12782
|
+
"kind": "SCALAR",
|
|
12783
|
+
"name": "String",
|
|
12784
|
+
"ofType": null
|
|
12785
|
+
}
|
|
12786
|
+
},
|
|
12787
|
+
"isDeprecated": false,
|
|
12788
|
+
"deprecationReason": null
|
|
12789
|
+
},
|
|
12790
|
+
{
|
|
12791
|
+
"name": "status",
|
|
12792
|
+
"description": "The status of this Payment.",
|
|
12793
|
+
"args": [],
|
|
12794
|
+
"type": {
|
|
12795
|
+
"kind": "NON_NULL",
|
|
12796
|
+
"name": null,
|
|
12797
|
+
"ofType": {
|
|
12798
|
+
"kind": "ENUM",
|
|
12799
|
+
"name": "PaymentStatus",
|
|
12800
|
+
"ofType": null
|
|
12801
|
+
}
|
|
12802
|
+
},
|
|
12803
|
+
"isDeprecated": false,
|
|
12804
|
+
"deprecationReason": null
|
|
12805
|
+
}
|
|
12806
|
+
],
|
|
12807
|
+
"inputFields": null,
|
|
12808
|
+
"interfaces": [],
|
|
12809
|
+
"enumValues": null,
|
|
12810
|
+
"possibleTypes": null
|
|
12811
|
+
},
|
|
12812
|
+
{
|
|
12813
|
+
"kind": "ENUM",
|
|
12814
|
+
"name": "PaymentStatus",
|
|
12815
|
+
"description": "EXPERIMENTAL — subject to change.\n\nStatus of a Payment.",
|
|
12816
|
+
"fields": null,
|
|
12817
|
+
"inputFields": null,
|
|
12818
|
+
"interfaces": null,
|
|
12819
|
+
"enumValues": [
|
|
12820
|
+
{
|
|
12821
|
+
"name": "processing",
|
|
12822
|
+
"description": null,
|
|
12823
|
+
"isDeprecated": false,
|
|
12824
|
+
"deprecationReason": null
|
|
12825
|
+
},
|
|
12826
|
+
{
|
|
12827
|
+
"name": "requires_confirmation",
|
|
12828
|
+
"description": null,
|
|
12829
|
+
"isDeprecated": false,
|
|
12830
|
+
"deprecationReason": null
|
|
12831
|
+
},
|
|
12832
|
+
{
|
|
12833
|
+
"name": "settled",
|
|
12834
|
+
"description": null,
|
|
12835
|
+
"isDeprecated": false,
|
|
12836
|
+
"deprecationReason": null
|
|
12837
|
+
}
|
|
12838
|
+
],
|
|
12839
|
+
"possibleTypes": null
|
|
12840
|
+
},
|
|
12262
12841
|
{
|
|
12263
12842
|
"kind": "SCALAR",
|
|
12264
12843
|
"name": "Period",
|
|
@@ -12269,6 +12848,16 @@
|
|
|
12269
12848
|
"enumValues": null,
|
|
12270
12849
|
"possibleTypes": null
|
|
12271
12850
|
},
|
|
12851
|
+
{
|
|
12852
|
+
"kind": "SCALAR",
|
|
12853
|
+
"name": "PeriodFilter",
|
|
12854
|
+
"description": "A specific year (\"2026\") or month (\"2026-05\") used to match dates that fall within it.",
|
|
12855
|
+
"fields": null,
|
|
12856
|
+
"inputFields": null,
|
|
12857
|
+
"interfaces": null,
|
|
12858
|
+
"enumValues": null,
|
|
12859
|
+
"possibleTypes": null
|
|
12860
|
+
},
|
|
12272
12861
|
{
|
|
12273
12862
|
"kind": "ENUM",
|
|
12274
12863
|
"name": "PostLinesAs",
|
|
@@ -12364,7 +12953,7 @@
|
|
|
12364
12953
|
"args": [
|
|
12365
12954
|
{
|
|
12366
12955
|
"name": "after",
|
|
12367
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
12956
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12368
12957
|
"type": {
|
|
12369
12958
|
"kind": "SCALAR",
|
|
12370
12959
|
"name": "String",
|
|
@@ -12374,7 +12963,7 @@
|
|
|
12374
12963
|
},
|
|
12375
12964
|
{
|
|
12376
12965
|
"name": "before",
|
|
12377
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
12966
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12378
12967
|
"type": {
|
|
12379
12968
|
"kind": "SCALAR",
|
|
12380
12969
|
"name": "String",
|
|
@@ -12614,7 +13203,7 @@
|
|
|
12614
13203
|
"args": [
|
|
12615
13204
|
{
|
|
12616
13205
|
"name": "after",
|
|
12617
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
13206
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12618
13207
|
"type": {
|
|
12619
13208
|
"kind": "SCALAR",
|
|
12620
13209
|
"name": "String",
|
|
@@ -12624,7 +13213,7 @@
|
|
|
12624
13213
|
},
|
|
12625
13214
|
{
|
|
12626
13215
|
"name": "before",
|
|
12627
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
13216
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12628
13217
|
"type": {
|
|
12629
13218
|
"kind": "SCALAR",
|
|
12630
13219
|
"name": "String",
|
|
@@ -12634,7 +13223,7 @@
|
|
|
12634
13223
|
},
|
|
12635
13224
|
{
|
|
12636
13225
|
"name": "filter",
|
|
12637
|
-
"description": "Filter the Ledgers returned. Learn more about [querying Ledgers](https://fragment.dev/
|
|
13226
|
+
"description": "Filter the Ledgers returned. Learn more about [querying Ledgers](https://fragment.dev/guides/query-data#ledgers).",
|
|
12638
13227
|
"type": {
|
|
12639
13228
|
"kind": "INPUT_OBJECT",
|
|
12640
13229
|
"name": "LedgersFilterSet",
|
|
@@ -12751,7 +13340,7 @@
|
|
|
12751
13340
|
"args": [
|
|
12752
13341
|
{
|
|
12753
13342
|
"name": "after",
|
|
12754
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
13343
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12755
13344
|
"type": {
|
|
12756
13345
|
"kind": "SCALAR",
|
|
12757
13346
|
"name": "String",
|
|
@@ -12761,7 +13350,7 @@
|
|
|
12761
13350
|
},
|
|
12762
13351
|
{
|
|
12763
13352
|
"name": "before",
|
|
12764
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
13353
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
12765
13354
|
"type": {
|
|
12766
13355
|
"kind": "SCALAR",
|
|
12767
13356
|
"name": "String",
|
|
@@ -12854,7 +13443,7 @@
|
|
|
12854
13443
|
{
|
|
12855
13444
|
"kind": "ENUM",
|
|
12856
13445
|
"name": "ReadBalanceConsistencyMode",
|
|
12857
|
-
"description": "The consistency configuration of a Ledger Account's balance queries. If not provided as an argument to a balance query, the default behavior is to read eventually consistent balances. See [Configure consistency](https://fragment.dev/
|
|
13446
|
+
"description": "The consistency configuration of a Ledger Account's balance queries. If not provided as an argument to a balance query, the default behavior is to read eventually consistent balances. See [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
12858
13447
|
"fields": null,
|
|
12859
13448
|
"inputFields": null,
|
|
12860
13449
|
"interfaces": null,
|
|
@@ -13243,7 +13832,7 @@
|
|
|
13243
13832
|
"args": [
|
|
13244
13833
|
{
|
|
13245
13834
|
"name": "after",
|
|
13246
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
13835
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
13247
13836
|
"type": {
|
|
13248
13837
|
"kind": "SCALAR",
|
|
13249
13838
|
"name": "String",
|
|
@@ -13253,7 +13842,7 @@
|
|
|
13253
13842
|
},
|
|
13254
13843
|
{
|
|
13255
13844
|
"name": "before",
|
|
13256
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
13845
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
13257
13846
|
"type": {
|
|
13258
13847
|
"kind": "SCALAR",
|
|
13259
13848
|
"name": "String",
|
|
@@ -13343,7 +13932,7 @@
|
|
|
13343
13932
|
"args": [
|
|
13344
13933
|
{
|
|
13345
13934
|
"name": "after",
|
|
13346
|
-
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/
|
|
13935
|
+
"description": "Where to start paginating from, when paginating forwards. Send endCursor from a response to get its next page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
13347
13936
|
"type": {
|
|
13348
13937
|
"kind": "SCALAR",
|
|
13349
13938
|
"name": "String",
|
|
@@ -13353,7 +13942,7 @@
|
|
|
13353
13942
|
},
|
|
13354
13943
|
{
|
|
13355
13944
|
"name": "before",
|
|
13356
|
-
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/
|
|
13945
|
+
"description": "Where to start paginating from, when paginating backwards. Send startCursor from a response to get the previous page. Learn more about [pagination](https://fragment.dev/guides/query-data#basics-pagination).",
|
|
13357
13946
|
"type": {
|
|
13358
13947
|
"kind": "SCALAR",
|
|
13359
13948
|
"name": "String",
|
|
@@ -13485,12 +14074,12 @@
|
|
|
13485
14074
|
{
|
|
13486
14075
|
"kind": "INPUT_OBJECT",
|
|
13487
14076
|
"name": "SchemaConsistencyConfigInput",
|
|
13488
|
-
"description": "The consistency configuration for entities created within Ledgers created by this Schema.\n\nSee [Configure consistency](https://fragment.dev/
|
|
14077
|
+
"description": "The consistency configuration for entities created within Ledgers created by this Schema.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
13489
14078
|
"fields": null,
|
|
13490
14079
|
"inputFields": [
|
|
13491
14080
|
{
|
|
13492
14081
|
"name": "entries",
|
|
13493
|
-
"description": "The consistency mode for the Ledger Entries list query within Ledgers created by this Schema.\n\nSee [Configure consistency](https://fragment.dev/
|
|
14082
|
+
"description": "The consistency mode for the Ledger Entries list query within Ledgers created by this Schema.\n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
13494
14083
|
"type": {
|
|
13495
14084
|
"kind": "ENUM",
|
|
13496
14085
|
"name": "SchemaConsistencyMode",
|
|
@@ -13506,7 +14095,7 @@
|
|
|
13506
14095
|
{
|
|
13507
14096
|
"kind": "ENUM",
|
|
13508
14097
|
"name": "SchemaConsistencyMode",
|
|
13509
|
-
"description": "The consistency modes available for entities created within this Schema. \n\nSee [Configure consistency](https://fragment.dev/
|
|
14098
|
+
"description": "The consistency modes available for entities created within this Schema. \n\nSee [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
13510
14099
|
"fields": null,
|
|
13511
14100
|
"inputFields": null,
|
|
13512
14101
|
"interfaces": null,
|
|
@@ -13794,7 +14383,7 @@
|
|
|
13794
14383
|
},
|
|
13795
14384
|
{
|
|
13796
14385
|
"name": "consistencyConfig",
|
|
13797
|
-
"description": "The consistency configuration for this ledger account. See [Configure consistency](https://fragment.dev/
|
|
14386
|
+
"description": "The consistency configuration for this ledger account. See [Configure consistency](https://fragment.dev/guides/configure-consistency).",
|
|
13798
14387
|
"type": {
|
|
13799
14388
|
"kind": "INPUT_OBJECT",
|
|
13800
14389
|
"name": "LedgerAccountConsistencyConfigInput",
|
|
@@ -13856,6 +14445,16 @@
|
|
|
13856
14445
|
},
|
|
13857
14446
|
"defaultValue": null
|
|
13858
14447
|
},
|
|
14448
|
+
{
|
|
14449
|
+
"name": "payment",
|
|
14450
|
+
"description": "EXPERIMENTAL: Marks this as a Payment Account.",
|
|
14451
|
+
"type": {
|
|
14452
|
+
"kind": "INPUT_OBJECT",
|
|
14453
|
+
"name": "SchemaPaymentInput",
|
|
14454
|
+
"ofType": null
|
|
14455
|
+
},
|
|
14456
|
+
"defaultValue": null
|
|
14457
|
+
},
|
|
13859
14458
|
{
|
|
13860
14459
|
"name": "status",
|
|
13861
14460
|
"description": "The status of this Ledger Account. Defaults to active.",
|
|
@@ -14391,7 +14990,7 @@
|
|
|
14391
14990
|
},
|
|
14392
14991
|
{
|
|
14393
14992
|
"name": "tx",
|
|
14394
|
-
"description": "The external transaction to reconcile.\nThis field is required if the Ledger Account being posted to is a Linked Ledger Account. Otherwise, this field is disallowed.\nIt supports parameters in its attributes via handlebars syntax.\n\nSee the docs on [reconciling payments](https://fragment.dev/
|
|
14993
|
+
"description": "The external transaction to reconcile.\nThis field is required if the Ledger Account being posted to is a Linked Ledger Account. Otherwise, this field is disallowed.\nIt supports parameters in its attributes via handlebars syntax.\n\nSee the docs on [reconciling payments](https://fragment.dev/guides/reconcile-payments).",
|
|
14395
14994
|
"type": {
|
|
14396
14995
|
"kind": "INPUT_OBJECT",
|
|
14397
14996
|
"name": "SchemaTxMatchInput",
|
|
@@ -14439,6 +15038,31 @@
|
|
|
14439
15038
|
"enumValues": null,
|
|
14440
15039
|
"possibleTypes": null
|
|
14441
15040
|
},
|
|
15041
|
+
{
|
|
15042
|
+
"kind": "INPUT_OBJECT",
|
|
15043
|
+
"name": "SchemaPaymentInput",
|
|
15044
|
+
"description": "EXPERIMENTAL: Marks a Ledger Account as a Payment Account.",
|
|
15045
|
+
"fields": null,
|
|
15046
|
+
"inputFields": [
|
|
15047
|
+
{
|
|
15048
|
+
"name": "penguin",
|
|
15049
|
+
"description": null,
|
|
15050
|
+
"type": {
|
|
15051
|
+
"kind": "NON_NULL",
|
|
15052
|
+
"name": null,
|
|
15053
|
+
"ofType": {
|
|
15054
|
+
"kind": "SCALAR",
|
|
15055
|
+
"name": "Boolean",
|
|
15056
|
+
"ofType": null
|
|
15057
|
+
}
|
|
15058
|
+
},
|
|
15059
|
+
"defaultValue": null
|
|
15060
|
+
}
|
|
15061
|
+
],
|
|
15062
|
+
"interfaces": null,
|
|
15063
|
+
"enumValues": null,
|
|
15064
|
+
"possibleTypes": null
|
|
15065
|
+
},
|
|
14442
15066
|
{
|
|
14443
15067
|
"kind": "INPUT_OBJECT",
|
|
14444
15068
|
"name": "SchemaRepeatedConfigInput",
|
|
@@ -14804,6 +15428,24 @@
|
|
|
14804
15428
|
"ofType": null
|
|
14805
15429
|
},
|
|
14806
15430
|
"defaultValue": null
|
|
15431
|
+
},
|
|
15432
|
+
{
|
|
15433
|
+
"name": "matchesAny",
|
|
15434
|
+
"description": "Must match any one of the provided `matches` patterns, OR-ed together — results are returned as a single paginated list. Each entry uses the same wildcard grammar as `matches`. Cannot be combined with `matches`. Limited to 100 entries.",
|
|
15435
|
+
"type": {
|
|
15436
|
+
"kind": "LIST",
|
|
15437
|
+
"name": null,
|
|
15438
|
+
"ofType": {
|
|
15439
|
+
"kind": "NON_NULL",
|
|
15440
|
+
"name": null,
|
|
15441
|
+
"ofType": {
|
|
15442
|
+
"kind": "SCALAR",
|
|
15443
|
+
"name": "String",
|
|
15444
|
+
"ofType": null
|
|
15445
|
+
}
|
|
15446
|
+
}
|
|
15447
|
+
},
|
|
15448
|
+
"defaultValue": null
|
|
14807
15449
|
}
|
|
14808
15450
|
],
|
|
14809
15451
|
"interfaces": null,
|
|
@@ -16017,6 +16659,24 @@
|
|
|
16017
16659
|
},
|
|
16018
16660
|
"defaultValue": null
|
|
16019
16661
|
},
|
|
16662
|
+
{
|
|
16663
|
+
"name": "ledgerLines",
|
|
16664
|
+
"description": "The list of Ledger Line updates to apply to Ledger Lines on this Ledger Entry.",
|
|
16665
|
+
"type": {
|
|
16666
|
+
"kind": "LIST",
|
|
16667
|
+
"name": null,
|
|
16668
|
+
"ofType": {
|
|
16669
|
+
"kind": "NON_NULL",
|
|
16670
|
+
"name": null,
|
|
16671
|
+
"ofType": {
|
|
16672
|
+
"kind": "INPUT_OBJECT",
|
|
16673
|
+
"name": "UpdateLedgerLineInput",
|
|
16674
|
+
"ofType": null
|
|
16675
|
+
}
|
|
16676
|
+
}
|
|
16677
|
+
},
|
|
16678
|
+
"defaultValue": null
|
|
16679
|
+
},
|
|
16020
16680
|
{
|
|
16021
16681
|
"name": "tags",
|
|
16022
16682
|
"description": "The list of Tags to add and/or update on this Ledger Entry.",
|
|
@@ -16132,6 +16792,67 @@
|
|
|
16132
16792
|
"enumValues": null,
|
|
16133
16793
|
"possibleTypes": null
|
|
16134
16794
|
},
|
|
16795
|
+
{
|
|
16796
|
+
"kind": "INPUT_OBJECT",
|
|
16797
|
+
"name": "UpdateLedgerLineInput",
|
|
16798
|
+
"description": null,
|
|
16799
|
+
"fields": null,
|
|
16800
|
+
"inputFields": [
|
|
16801
|
+
{
|
|
16802
|
+
"name": "ledgerLine",
|
|
16803
|
+
"description": "The Ledger Line that is being updated. It must belong to the Ledger Entry being updated.",
|
|
16804
|
+
"type": {
|
|
16805
|
+
"kind": "NON_NULL",
|
|
16806
|
+
"name": null,
|
|
16807
|
+
"ofType": {
|
|
16808
|
+
"kind": "INPUT_OBJECT",
|
|
16809
|
+
"name": "LedgerLineMatchInput",
|
|
16810
|
+
"ofType": null
|
|
16811
|
+
}
|
|
16812
|
+
},
|
|
16813
|
+
"defaultValue": null
|
|
16814
|
+
},
|
|
16815
|
+
{
|
|
16816
|
+
"name": "tags",
|
|
16817
|
+
"description": "The list of Tags to add and/or update on this Ledger Line.",
|
|
16818
|
+
"type": {
|
|
16819
|
+
"kind": "LIST",
|
|
16820
|
+
"name": null,
|
|
16821
|
+
"ofType": {
|
|
16822
|
+
"kind": "NON_NULL",
|
|
16823
|
+
"name": null,
|
|
16824
|
+
"ofType": {
|
|
16825
|
+
"kind": "INPUT_OBJECT",
|
|
16826
|
+
"name": "LedgerLineTagInput",
|
|
16827
|
+
"ofType": null
|
|
16828
|
+
}
|
|
16829
|
+
}
|
|
16830
|
+
},
|
|
16831
|
+
"defaultValue": null
|
|
16832
|
+
},
|
|
16833
|
+
{
|
|
16834
|
+
"name": "tagsToRemove",
|
|
16835
|
+
"description": "The list of Tags to remove from this Ledger Line.",
|
|
16836
|
+
"type": {
|
|
16837
|
+
"kind": "LIST",
|
|
16838
|
+
"name": null,
|
|
16839
|
+
"ofType": {
|
|
16840
|
+
"kind": "NON_NULL",
|
|
16841
|
+
"name": null,
|
|
16842
|
+
"ofType": {
|
|
16843
|
+
"kind": "INPUT_OBJECT",
|
|
16844
|
+
"name": "LedgerLineTagInput",
|
|
16845
|
+
"ofType": null
|
|
16846
|
+
}
|
|
16847
|
+
}
|
|
16848
|
+
},
|
|
16849
|
+
"defaultValue": null
|
|
16850
|
+
}
|
|
16851
|
+
],
|
|
16852
|
+
"interfaces": null,
|
|
16853
|
+
"enumValues": null,
|
|
16854
|
+
"possibleTypes": null
|
|
16855
|
+
},
|
|
16135
16856
|
{
|
|
16136
16857
|
"kind": "UNION",
|
|
16137
16858
|
"name": "UpdateLedgerResponse",
|
|
@@ -16436,6 +17157,12 @@
|
|
|
16436
17157
|
"isDeprecated": false,
|
|
16437
17158
|
"deprecationReason": null
|
|
16438
17159
|
},
|
|
17160
|
+
{
|
|
17161
|
+
"name": "VARIABLE_DEFINITION",
|
|
17162
|
+
"description": "Location adjacent to a variable definition.",
|
|
17163
|
+
"isDeprecated": false,
|
|
17164
|
+
"deprecationReason": null
|
|
17165
|
+
},
|
|
16439
17166
|
{
|
|
16440
17167
|
"name": "SCHEMA",
|
|
16441
17168
|
"description": "Location adjacent to a schema definition.",
|
|
@@ -16501,12 +17228,6 @@
|
|
|
16501
17228
|
"description": "Location adjacent to an input object field definition.",
|
|
16502
17229
|
"isDeprecated": false,
|
|
16503
17230
|
"deprecationReason": null
|
|
16504
|
-
},
|
|
16505
|
-
{
|
|
16506
|
-
"name": "VARIABLE_DEFINITION",
|
|
16507
|
-
"description": "Location adjacent to a variable definition.",
|
|
16508
|
-
"isDeprecated": false,
|
|
16509
|
-
"deprecationReason": null
|
|
16510
17231
|
}
|
|
16511
17232
|
],
|
|
16512
17233
|
"possibleTypes": null
|