For some reason when using the latest v1.4.1, the client only sends the fragments to the server but not the query:
export const GetThreadDocument = gql`
query getThread($id: ID!) {
thread: node(id: $id) {
...thread
...threadParticipants
}
}
${threadFragmentDoc}
${threadParticipantsFragmentDoc}
`;
results in only the threadFragmentDoc and the threadParticipantsFragmentDoc being sent to the server.