We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b2b26 commit 9415b81Copy full SHA for 9415b81
packages/api/lib/api-client.ts
@@ -228,7 +228,7 @@ export class ApiClient {
228
const processValue = (value: unknown, currentPath: string): unknown => {
229
if (this.isFile(value)) {
230
files.push({ path: currentPath, file: value });
231
- return null; // Replace file with null per the spec
+ return null; // Replace file with null per the GraphQL multipart request specification
232
}
233
234
if (Array.isArray(value)) {
0 commit comments