Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuprog committed Mar 22, 2022
1 parent 8065753 commit 26ba9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mutation/Mutation.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class Mutation {
(propName, object) => this.onFetchArrayOfEntities(propName, object, variables, data);

const onMissingRelation =
(propName, propValue, object) => this.query.onMissingRelation(propName, propValue, object, variables, data);
(propName, propValue, object) => this.onMissingRelation(propName, propValue, object, variables, data);

await store.store(transformedData, { onFetchEntity, onFetchArrayOfEntities, onMissingRelation });
}
Expand Down

0 comments on commit 26ba9d3

Please sign in to comment.