@@ -28510,7 +28510,7 @@ var Action = /** @class */ (function () {
28510
28510
};
28511
28511
/**
28512
28512
* Convenience method to get the model from the state.
28513
- * @param {State } state Vuex state
28513
+ * @param {RootState } state Vuex state
28514
28514
* @returns {Model}
28515
28515
*/
28516
28516
Action.getModelFromState = function (state) {
@@ -29330,14 +29330,14 @@ var VuexORMGraphQL = /** @class */ (function () {
29330
29330
*/
29331
29331
VuexORMGraphQL.setupActions = function () {
29332
29332
var context = Context.getInstance();
29333
- context.components.rootActions .simpleQuery = SimpleQuery.call.bind(SimpleQuery);
29334
- context.components.rootActions .simpleMutation = SimpleMutation.call.bind(SimpleMutation);
29335
- context.components.subActions .fetch = Fetch.call.bind(Fetch);
29336
- context.components.subActions .persist = Persist.call.bind(Persist);
29337
- context.components.subActions .push = Push.call.bind(Push);
29338
- context.components.subActions .destroy = Destroy.call.bind(Destroy);
29339
- context.components.subActions .mutate = Mutate.call.bind(Mutate);
29340
- context.components.subActions .query = Query.call.bind(Query);
29333
+ context.components.RootActions .simpleQuery = SimpleQuery.call.bind(SimpleQuery);
29334
+ context.components.RootActions .simpleMutation = SimpleMutation.call.bind(SimpleMutation);
29335
+ context.components.Actions .fetch = Fetch.call.bind(Fetch);
29336
+ context.components.Actions .persist = Persist.call.bind(Persist);
29337
+ context.components.Actions .push = Push.call.bind(Push);
29338
+ context.components.Actions .destroy = Destroy.call.bind(Destroy);
29339
+ context.components.Actions .mutate = Mutate.call.bind(Mutate);
29340
+ context.components.Actions .query = Query.call.bind(Query);
29341
29341
};
29342
29342
/**
29343
29343
* This method will setup following model methods: Model.fetch, Model.mutate, Model.customQuery, record.$mutate,
0 commit comments