jaydenseric / apollo-upload-client

A terminating Apollo Link for Apollo Client that fetches a GraphQL multipart request if the GraphQL variables contain files (by default FileList, File, or Blob instances), or else fetches a regular GraphQL POST or GET request (depending on the config and GraphQL operation).
https://npm.im/apollo-upload-client
1.53k stars 156 forks source link

Add `includeUnusedVariables` option support #348

Open storm2513 opened 6 months ago

storm2513 commented 6 months ago

Issue description

This option is present in createHttpLink, but missing in createUploadLink

Reason why this option was added is explained here: https://github.com/apollographql/apollo-client/pull/7127

What changes have been made?