Skip to content

Commit

Permalink
fix: search media test
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-scheers-lemon committed Oct 22, 2024
1 parent 8229b84 commit e3eadd3
Showing 1 changed file with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,17 +180,16 @@ describe('Queries end-to-end tests', () => {
query: gql`
query SearchMedia($searchword: String!) {
SearchMedia(input: { searchword: $searchword }) {
results
# {
# __typename
# ... on BookReadModel {
# title
# pages
# }
# ... on MovieReadModel {
# title
# }
# }
results {
__typename
... on BookMedia {
title
pages
}
... on MovieMedia {
title
}
}
}
}
`,
Expand Down

0 comments on commit e3eadd3

Please sign in to comment.