Skip to content

Commit

Permalink
feat(sequelize): Add additional filter options to QueryService
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Aug 31, 2020
1 parent 64241dc commit 29fdfa7
Show file tree
Hide file tree
Showing 5 changed files with 421 additions and 54 deletions.
6 changes: 3 additions & 3 deletions packages/query-sequelize/__tests__/__fixtures__/seeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ export const PLAIN_TEST_RELATIONS: Pick<
...relations,
{
testRelationPk: `test-relations-${te.testEntityPk}-1`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-one`,
testEntityId: te.testEntityPk,
oneTestEntityId: te.testEntityPk,
},
{
testRelationPk: `test-relations-${te.testEntityPk}-2`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-two`,
testEntityId: te.testEntityPk,
oneTestEntityId: null,
},
{
testRelationPk: `test-relations-${te.testEntityPk}-3`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-three`,
testEntityId: te.testEntityPk,
oneTestEntityId: null,
},
Expand Down
Loading

0 comments on commit 29fdfa7

Please sign in to comment.