graphlit-client 1.0.20240509001 → 1.0.20240509002

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.
@@ -839,7 +839,7 @@ exports.PublishText = (0, graphql_tag_1.default) `
839
839
  }
840
840
  `;
841
841
  exports.QueryContents = (0, graphql_tag_1.default) `
842
- query QueryContents($filter: ContentFilter!) {
842
+ query QueryContents($filter: ContentFilter) {
843
843
  contents(filter: $filter) {
844
844
  results {
845
845
  id
@@ -1063,7 +1063,7 @@ exports.QueryContents = (0, graphql_tag_1.default) `
1063
1063
  }
1064
1064
  `;
1065
1065
  exports.QueryContentsFacets = (0, graphql_tag_1.default) `
1066
- query QueryContentsFacets($filter: ContentFilter!, $facets: [ContentFacetInput!]) {
1066
+ query QueryContentsFacets($filter: ContentFilter, $facets: [ContentFacetInput!]) {
1067
1067
  contents(filter: $filter, facets: $facets) {
1068
1068
  results {
1069
1069
  id
@@ -1304,7 +1304,7 @@ exports.QueryContentsFacets = (0, graphql_tag_1.default) `
1304
1304
  }
1305
1305
  `;
1306
1306
  exports.QueryContentsGraph = (0, graphql_tag_1.default) `
1307
- query QueryContentsGraph($filter: ContentFilter!, $graph: ContentGraphInput) {
1307
+ query QueryContentsGraph($filter: ContentFilter, $graph: ContentGraphInput) {
1308
1308
  contents(filter: $filter, graph: $graph) {
1309
1309
  graph {
1310
1310
  nodes {
@@ -9255,7 +9255,7 @@ export type PublishTextMutation = {
9255
9255
  } | null;
9256
9256
  };
9257
9257
  export type QueryContentsQueryVariables = Exact<{
9258
- filter: ContentFilter;
9258
+ filter?: InputMaybe<ContentFilter>;
9259
9259
  }>;
9260
9260
  export type QueryContentsQuery = {
9261
9261
  __typename?: 'Query';
@@ -9510,7 +9510,7 @@ export type QueryContentsQuery = {
9510
9510
  } | null;
9511
9511
  };
9512
9512
  export type QueryContentsFacetsQueryVariables = Exact<{
9513
- filter: ContentFilter;
9513
+ filter?: InputMaybe<ContentFilter>;
9514
9514
  facets?: InputMaybe<Array<ContentFacetInput> | ContentFacetInput>;
9515
9515
  }>;
9516
9516
  export type QueryContentsFacetsQuery = {
@@ -9787,7 +9787,7 @@ export type QueryContentsFacetsQuery = {
9787
9787
  } | null;
9788
9788
  };
9789
9789
  export type QueryContentsGraphQueryVariables = Exact<{
9790
- filter: ContentFilter;
9790
+ filter?: InputMaybe<ContentFilter>;
9791
9791
  graph?: InputMaybe<ContentGraphInput>;
9792
9792
  }>;
9793
9793
  export type QueryContentsGraphQuery = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240509001",
3
+ "version": "1.0.20240509002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",