We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this example in my code, the query returns always empty:
it('Should return store by id', () => { const query = ` query($id: ID, $slug: String) { store(id: $id, slug: $slug) { ... on Store { id name slug } } } `; const fixture = { data: { store: { id: '1', name: 'AnyoneStore' } } }; const variables = { id: "1" }; const { data: { store } } = tester.mock({ query, fixture, variables }); // store / / {}
The text was updated successfully, but these errors were encountered:
Can you share your schema please, so I can reproduce it locally?
As you can see here it should be working fine for unions.
Also, you can use this codesandbox template to reproduce the test, and we can test it there
Sorry, something went wrong.
No branches or pull requests
In this example in my code, the query returns always empty:
The text was updated successfully, but these errors were encountered: