You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked the existing issues to ensure this is not a duplicate.
I am running the latest version of Tailcall.
Describe the bug
Why when we query an interface existing in another GraphQL server, the query sent to the original server doesn't contain fragments?
Like that we can't query the different entities implementing the interface.
query used in tailcall:
query QueryInterface {
queryInterface {
name
__typename
... on Author {
author_id
}
... on Book {
book_id
}
}
}
query sent to the original graphql server:
INFO Query { "query": "query { Interface { name __typename author_id book_id } }" }
The text was updated successfully, but these errors were encountered:
Prerequisites
Describe the bug
Why when we query an interface existing in another GraphQL server, the query sent to the original server doesn't contain fragments?
Like that we can't query the different entities implementing the interface.
query used in tailcall:
query sent to the original graphql server:
The text was updated successfully, but these errors were encountered: