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.
Files changed (2) hide show
  1. package/dist/client.js +6 -1
  2. 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, { filter: filter });
536
+ return this.queryAndCheckError(Documents.QueryContentsGraph, {
537
+ filter: filter,
538
+ graph: {
539
+ /* return everything */
540
+ },
541
+ });
537
542
  });
538
543
  }
539
544
  countContents(filter) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250529001",
3
+ "version": "1.0.20250530001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",