@lucern/graph-sync 1.0.17 → 1.0.18
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.
- package/CHANGELOG.md +3 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/neo4jQueries.js +3 -1
- package/dist/neo4jQueries.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1129,6 +1129,7 @@ var getNecessaryEvidence = action({
|
|
|
1129
1129
|
var getFalsificationQuestions = action({
|
|
1130
1130
|
args: {
|
|
1131
1131
|
limit: v.optional(v.number()),
|
|
1132
|
+
beliefIds: v.optional(v.array(v.string())),
|
|
1132
1133
|
apiBaseUrl: v.optional(v.string()),
|
|
1133
1134
|
topicId: v.optional(v.string())
|
|
1134
1135
|
},
|
|
@@ -1137,7 +1138,8 @@ var getFalsificationQuestions = action({
|
|
|
1137
1138
|
const result = await callNeo4jQuery(
|
|
1138
1139
|
"falsificationQuestions",
|
|
1139
1140
|
withTopicScope(args, {
|
|
1140
|
-
limit: toInt(args.limit, 50)
|
|
1141
|
+
limit: toInt(args.limit, 50),
|
|
1142
|
+
beliefIds: args.beliefIds
|
|
1141
1143
|
}),
|
|
1142
1144
|
args.apiBaseUrl
|
|
1143
1145
|
);
|