Skip to content

Commit

Permalink
feat(typeorm): 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 474369b commit 64241dc
Show file tree
Hide file tree
Showing 5 changed files with 432 additions and 42 deletions.
6 changes: 3 additions & 3 deletions packages/query-typeorm/__tests__/__fixtures__/seeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ export const TEST_RELATIONS: TestRelation[] = TEST_ENTITIES.reduce((relations, t
...relations,
{
testRelationPk: `test-relations-${te.testEntityPk}-1`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-one`,
testEntityId: te.testEntityPk,
},
{
testRelationPk: `test-relations-${te.testEntityPk}-2`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-two`,
testEntityId: te.testEntityPk,
},
{
testRelationPk: `test-relations-${te.testEntityPk}-3`,
relationName: `${te.stringType}-test-relation`,
relationName: `${te.stringType}-test-relation-three`,
testEntityId: te.testEntityPk,
},
];
Expand Down
Loading

0 comments on commit 64241dc

Please sign in to comment.