Skip to content

Commit

Permalink
fix(typeMerging): can't return a list of merged types (#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-cherel committed Jun 11, 2020
1 parent e2f953f commit ab31a8f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/stitch/tests/typeMerging.test.ts
Expand Up @@ -15,6 +15,7 @@ let chirpSchema = makeExecutableSchema({
id: ID!
text: String
author: User
coAuthors: [User]
}
type User {
Expand Down Expand Up @@ -81,6 +82,9 @@ describe('merging using type merging', () => {
author {
email
}
coAuthors {
email
}
}
}
}
Expand Down

0 comments on commit ab31a8f

Please sign in to comment.