
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
@hex-inc/apollo-upload-client
Advanced tools
A terminating Apollo Link for Apollo Client that allows FileList, File, Blob or ReactNativeFile instances within query or mutation variables and sends GraphQL multipart requests.
A terminating Apollo Link for Apollo Client that allows FileList
, File
, Blob
or ReactNativeFile
instances within query or mutation variables and sends GraphQL multipart requests.
Install with npm:
npm install apollo-upload-client
Apollo Boost doesn’t allow link customization; if you are using it migrate to a manual Apollo Client setup.
Apollo Client can only have 1 “terminating” Apollo Link that sends the GraphQL requests; if one such as apollo-link-http
is already setup, remove it.
Initialize the client with a terminating link using createUploadLink
.
Also ensure the GraphQL server implements the GraphQL multipart request spec and that uploads are handled correctly in resolvers.
Use FileList
, File
, Blob
or ReactNativeFile
instances anywhere within query or mutation variables to send a GraphQL multipart request.
See also the example API and client.
FileList
const { useMutation } = require("@apollo/react-hooks");
const gql = require("graphql-tag");
const MUTATION = gql`
mutation($files: [Upload!]!) {
uploadFiles(files: $files) {
success
}
}
`;
const UploadFile = () => {
const [mutate] = useMutation(MUTATION);
const onChange = ({ target: { validity, files } }) =>
validity.valid && mutate({ variables: { files } });
return <input type="file" multiple required onChange={onChange} />;
};
File
const { useMutation } = require("@apollo/react-hooks");
const gql = require("graphql-tag");
const MUTATION = gql`
mutation($file: Upload!) {
uploadFile(file: $file) {
success
}
}
`;
const UploadFile = () => {
const [mutate] = useMutation(MUTATION);
const onChange = ({
target: {
validity,
files: [file]
}
}) => validity.valid && mutate({ variables: { file } });
return <input type="file" required onChange={onChange} />;
};
Blob
const gql = require("graphql-tag");
// Apollo Client instance.
const client = require("./client");
const file = new Blob(["Foo."], { type: "text/plain" });
// Optional, defaults to `blob`.
file.name = "bar.txt";
client.mutate({
mutation: gql`
mutation($file: Upload!) {
uploadFile(file: $file) {
success
}
}
`,
variables: { file }
});
> 0.5%, not OperaMini all, not dead
Consider polyfilling:
FAQs
A terminating Apollo Link for Apollo Client that allows FileList, File, Blob or ReactNativeFile instances within query or mutation variables and sends GraphQL multipart requests.
The npm package @hex-inc/apollo-upload-client receives a total of 0 weekly downloads. As such, @hex-inc/apollo-upload-client popularity was classified as not popular.
We found that @hex-inc/apollo-upload-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.