Skip to content

Commit

Permalink
fix(typo): pgInflection -> pgIntrospection (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Jan 20, 2019
1 parent b681427 commit 12c42c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ export default (function PgMutationCreatePlugin(
}
)}`,
isPgCreateInputType: true,
pgInflection: table,
pgInflection: table, // TODO:v5: remove - TYPO!
pgIntrospection: table,
}
);
const PayloadType = newWithHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ export default (async function PgMutationUpdateDeletePlugin(
isPgUpdateNodeInputType: mode === "update",
isPgDeleteInputType: mode === "delete",
isPgDeleteNodeInputType: mode === "delete",
pgInflection: table,
pgInflection: table, // TODO:v5: remove - TYPO!
pgIntrospection: table,
isMutationInput: true,
}
);
Expand Down Expand Up @@ -482,7 +483,8 @@ export default (async function PgMutationUpdateDeletePlugin(
isPgUpdateByKeysInputType: mode === "update",
isPgDeleteInputType: mode === "delete",
isPgDeleteByKeysInputType: mode === "delete",
pgInflection: table,
pgInflection: table, // TODO:v5: remove - TYPO!
pgIntrospection: table,
pgKeys: keys,
isMutationInput: true,
}
Expand Down

0 comments on commit 12c42c1

Please sign in to comment.