I'm attempting to upload a file via a graphql mutation using the Angular Apollo library, but it's not working. Here is my GraphQL mutation:
addAnomaly(params) {
return this.apollo.mutate({ mutation: this.addAnomalyMutation, variables: { input: params }, context: { useMultipart: true } });
}