graphlit-client 1.0.20250529001 → 1.0.20250530001
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/dist/client.js +6 -1
- package/package.json +1 -1
package/dist/client.js
CHANGED
@@ -533,7 +533,12 @@ class Graphlit {
|
|
533
533
|
}
|
534
534
|
queryContentsGraph(filter) {
|
535
535
|
return __awaiter(this, void 0, void 0, function* () {
|
536
|
-
return this.queryAndCheckError(Documents.QueryContentsGraph, {
|
536
|
+
return this.queryAndCheckError(Documents.QueryContentsGraph, {
|
537
|
+
filter: filter,
|
538
|
+
graph: {
|
539
|
+
/* return everything */
|
540
|
+
},
|
541
|
+
});
|
537
542
|
});
|
538
543
|
}
|
539
544
|
countContents(filter) {
|