fragment-dev 1.4.1 → 1.4.2
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 +8 -8
- data/lib/fragment_client/version.rb +1 -1
- data/lib/queries.graphql +233 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0066e16b8d20784f38da00692194efd700255146a691b96ff4ebd9e43c95b223
|
4
|
+
data.tar.gz: 86d5adfc01a428134bb2bf9e339085b105347523e03cfd06ebb51bdbf367d88a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 807070c42a22c5a793fc3907f9c77be59270620a75301df8619e5800e17b4e5bcc2714921c0c2b052e8710161da42391449a2b2af888cdf16470f5a5d450cb0d
|
7
|
+
data.tar.gz: 1597366f5a4ab3e7e786a8e5d939f11606d55df935c639e06fe6b6b27811a054fbe89a570aff0c34a10b3a0f53b4d52b52110955c883d8ab687bf904c02b1002
|
data/lib/fragment.schema.json
CHANGED
@@ -4475,7 +4475,7 @@
|
|
4475
4475
|
},
|
4476
4476
|
{
|
4477
4477
|
"name": "ledgerAccountDataMigrations",
|
4478
|
-
"description": "
|
4478
|
+
"description": "Ledger Account data migrations affecting this Ledger.",
|
4479
4479
|
"args": [
|
4480
4480
|
{
|
4481
4481
|
"name": "after",
|
@@ -4676,7 +4676,7 @@
|
|
4676
4676
|
},
|
4677
4677
|
{
|
4678
4678
|
"name": "ledgerEntryDataMigrations",
|
4679
|
-
"description": "
|
4679
|
+
"description": "Ledger Entry data migrations affecting this Ledger.",
|
4680
4680
|
"args": [
|
4681
4681
|
{
|
4682
4682
|
"name": "after",
|
@@ -6620,8 +6620,8 @@
|
|
6620
6620
|
"name": "accountPath",
|
6621
6621
|
"description": "Filter by Ledger Account path.",
|
6622
6622
|
"type": {
|
6623
|
-
"kind": "
|
6624
|
-
"name": "
|
6623
|
+
"kind": "INPUT_OBJECT",
|
6624
|
+
"name": "StringFilter",
|
6625
6625
|
"ofType": null
|
6626
6626
|
},
|
6627
6627
|
"defaultValue": null
|
@@ -8190,8 +8190,8 @@
|
|
8190
8190
|
"name": "entryType",
|
8191
8191
|
"description": "Filter by Ledger Entry type.",
|
8192
8192
|
"type": {
|
8193
|
-
"kind": "
|
8194
|
-
"name": "
|
8193
|
+
"kind": "INPUT_OBJECT",
|
8194
|
+
"name": "StringFilter",
|
8195
8195
|
"ofType": null
|
8196
8196
|
},
|
8197
8197
|
"defaultValue": null
|
@@ -8210,8 +8210,8 @@
|
|
8210
8210
|
"name": "typeVersion",
|
8211
8211
|
"description": "Filter by Ledger Entry type version.",
|
8212
8212
|
"type": {
|
8213
|
-
"kind": "
|
8214
|
-
"name": "
|
8213
|
+
"kind": "INPUT_OBJECT",
|
8214
|
+
"name": "StringFilter",
|
8215
8215
|
"ofType": null
|
8216
8216
|
},
|
8217
8217
|
"defaultValue": null
|
data/lib/queries.graphql
CHANGED
@@ -947,6 +947,239 @@ query ListLedgerEntryGroupBalances(
|
|
947
947
|
}
|
948
948
|
}
|
949
949
|
|
950
|
+
query GetEntryDataMigrations(
|
951
|
+
$ledgerIk: SafeString!
|
952
|
+
$filter: LedgerEntryDataMigrationsFilterSet
|
953
|
+
$after: String
|
954
|
+
$before: String
|
955
|
+
$first: Int
|
956
|
+
$last: Int
|
957
|
+
) {
|
958
|
+
ledger(ledger: { ik: $ledgerIk }) {
|
959
|
+
ledgerEntryDataMigrations(
|
960
|
+
first: $first
|
961
|
+
after: $after
|
962
|
+
before: $before
|
963
|
+
last: $last
|
964
|
+
filter: $filter
|
965
|
+
) {
|
966
|
+
nodes {
|
967
|
+
entryType
|
968
|
+
typeVersion
|
969
|
+
status
|
970
|
+
currentMigration {
|
971
|
+
schemaVersion
|
972
|
+
status
|
973
|
+
}
|
974
|
+
ledgerEntries {
|
975
|
+
nodes {
|
976
|
+
id
|
977
|
+
type
|
978
|
+
posted
|
979
|
+
parameters
|
980
|
+
}
|
981
|
+
pageInfo {
|
982
|
+
hasNextPage
|
983
|
+
endCursor
|
984
|
+
hasPreviousPage
|
985
|
+
startCursor
|
986
|
+
}
|
987
|
+
}
|
988
|
+
history {
|
989
|
+
nodes {
|
990
|
+
schemaVersion
|
991
|
+
status
|
992
|
+
}
|
993
|
+
pageInfo {
|
994
|
+
hasNextPage
|
995
|
+
endCursor
|
996
|
+
hasPreviousPage
|
997
|
+
startCursor
|
998
|
+
}
|
999
|
+
}
|
1000
|
+
}
|
1001
|
+
pageInfo {
|
1002
|
+
hasNextPage
|
1003
|
+
endCursor
|
1004
|
+
hasPreviousPage
|
1005
|
+
startCursor
|
1006
|
+
}
|
1007
|
+
}
|
1008
|
+
}
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
query GetEntriesToMigrateForLedgerEntryDataMigration(
|
1012
|
+
$ledgerIk: SafeString!
|
1013
|
+
$entryType: String!
|
1014
|
+
$typeVersion: String!
|
1015
|
+
$after: String
|
1016
|
+
$before: String
|
1017
|
+
$first: Int
|
1018
|
+
$last: Int
|
1019
|
+
) {
|
1020
|
+
ledger(ledger: { ik: $ledgerIk }) {
|
1021
|
+
ledgerEntryDataMigrations(
|
1022
|
+
filter: {
|
1023
|
+
entryType: {
|
1024
|
+
equalTo: $entryType
|
1025
|
+
}
|
1026
|
+
typeVersion: {
|
1027
|
+
equalTo: $typeVersion
|
1028
|
+
}
|
1029
|
+
}
|
1030
|
+
) {
|
1031
|
+
nodes {
|
1032
|
+
ledgerEntries(
|
1033
|
+
first: $first
|
1034
|
+
after: $after
|
1035
|
+
last: $last
|
1036
|
+
before: $before
|
1037
|
+
) {
|
1038
|
+
nodes {
|
1039
|
+
id
|
1040
|
+
ik
|
1041
|
+
type
|
1042
|
+
typeVersion
|
1043
|
+
description
|
1044
|
+
posted
|
1045
|
+
created
|
1046
|
+
parameters
|
1047
|
+
lines {
|
1048
|
+
nodes {
|
1049
|
+
id
|
1050
|
+
amount
|
1051
|
+
account {
|
1052
|
+
path
|
1053
|
+
}
|
1054
|
+
}
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
pageInfo {
|
1058
|
+
hasNextPage
|
1059
|
+
endCursor
|
1060
|
+
hasPreviousPage
|
1061
|
+
startCursor
|
1062
|
+
}
|
1063
|
+
}
|
1064
|
+
}
|
1065
|
+
}
|
1066
|
+
}
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
query GetAccountDataMigrations(
|
1070
|
+
$ledgerIk: SafeString!
|
1071
|
+
$filter: LedgerAccountDataMigrationsFilterSet
|
1072
|
+
$after: String
|
1073
|
+
$before: String
|
1074
|
+
$first: Int
|
1075
|
+
$last: Int
|
1076
|
+
) {
|
1077
|
+
ledger(ledger: { ik: $ledgerIk }) {
|
1078
|
+
ledgerAccountDataMigrations(
|
1079
|
+
first: $first
|
1080
|
+
after: $after
|
1081
|
+
before: $before
|
1082
|
+
last: $last
|
1083
|
+
filter: $filter
|
1084
|
+
) {
|
1085
|
+
nodes {
|
1086
|
+
accountPath
|
1087
|
+
status
|
1088
|
+
currentMigration {
|
1089
|
+
schemaVersion
|
1090
|
+
status
|
1091
|
+
}
|
1092
|
+
ledgerEntries {
|
1093
|
+
nodes {
|
1094
|
+
id
|
1095
|
+
type
|
1096
|
+
posted
|
1097
|
+
parameters
|
1098
|
+
}
|
1099
|
+
pageInfo {
|
1100
|
+
hasNextPage
|
1101
|
+
endCursor
|
1102
|
+
hasPreviousPage
|
1103
|
+
startCursor
|
1104
|
+
}
|
1105
|
+
}
|
1106
|
+
history {
|
1107
|
+
nodes {
|
1108
|
+
schemaVersion
|
1109
|
+
status
|
1110
|
+
}
|
1111
|
+
pageInfo {
|
1112
|
+
hasNextPage
|
1113
|
+
endCursor
|
1114
|
+
hasPreviousPage
|
1115
|
+
startCursor
|
1116
|
+
}
|
1117
|
+
}
|
1118
|
+
}
|
1119
|
+
pageInfo {
|
1120
|
+
hasNextPage
|
1121
|
+
endCursor
|
1122
|
+
hasPreviousPage
|
1123
|
+
startCursor
|
1124
|
+
}
|
1125
|
+
}
|
1126
|
+
}
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
query GetEntriesToMigrateForLedgerAccountDataMigration(
|
1130
|
+
$ledgerIk: SafeString!
|
1131
|
+
$accountPath: String!
|
1132
|
+
$after: String
|
1133
|
+
$before: String
|
1134
|
+
$first: Int
|
1135
|
+
$last: Int
|
1136
|
+
) {
|
1137
|
+
ledger(ledger: { ik: $ledgerIk }) {
|
1138
|
+
ledgerAccountDataMigrations(
|
1139
|
+
filter: {
|
1140
|
+
accountPath: {
|
1141
|
+
equalTo: $accountPath
|
1142
|
+
}
|
1143
|
+
}
|
1144
|
+
) {
|
1145
|
+
nodes {
|
1146
|
+
ledgerEntries(
|
1147
|
+
first: $first
|
1148
|
+
after: $after
|
1149
|
+
last: $last
|
1150
|
+
before: $before
|
1151
|
+
) {
|
1152
|
+
nodes {
|
1153
|
+
id
|
1154
|
+
ik
|
1155
|
+
type
|
1156
|
+
typeVersion
|
1157
|
+
description
|
1158
|
+
posted
|
1159
|
+
created
|
1160
|
+
parameters
|
1161
|
+
lines {
|
1162
|
+
nodes {
|
1163
|
+
id
|
1164
|
+
amount
|
1165
|
+
account {
|
1166
|
+
path
|
1167
|
+
}
|
1168
|
+
}
|
1169
|
+
}
|
1170
|
+
}
|
1171
|
+
pageInfo {
|
1172
|
+
hasNextPage
|
1173
|
+
endCursor
|
1174
|
+
hasPreviousPage
|
1175
|
+
startCursor
|
1176
|
+
}
|
1177
|
+
}
|
1178
|
+
}
|
1179
|
+
}
|
1180
|
+
}
|
1181
|
+
}
|
1182
|
+
|
950
1183
|
mutation CreateCustomCurrency(
|
951
1184
|
$id: SafeString!,
|
952
1185
|
$name: String!,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fragment-dev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fragment
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphql
|