houdini-svelte 0.17.13 → 0.18.0

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.
@@ -64,7 +64,9 @@ class QueryStore extends import_store2.BaseStore {
64
64
  }
65
65
  async fetch(args) {
66
66
  const config = await this.getConfig();
67
- const { policy, params, context } = await fetchParams(this.artifact, this.storeName, args);
67
+ const { policy, params, context } = await fetchParams(this.artifact, this.storeName, {
68
+ ...args
69
+ });
68
70
  const isLoadFetch = Boolean("event" in params && params.event);
69
71
  const isComponentFetch = !isLoadFetch;
70
72
  const input = await (0, import_scalars.marshalInputs)({
@@ -38,7 +38,9 @@ class QueryStore extends BaseStore {
38
38
  }
39
39
  async fetch(args) {
40
40
  const config = await this.getConfig();
41
- const { policy, params, context } = await fetchParams(this.artifact, this.storeName, args);
41
+ const { policy, params, context } = await fetchParams(this.artifact, this.storeName, {
42
+ ...args
43
+ });
42
44
  const isLoadFetch = Boolean("event" in params && params.event);
43
45
  const isComponentFetch = !isLoadFetch;
44
46
  const input = await marshalInputs({