Skip to main content
Drupal is a registered trademark of Dries Buytaert
Release: OpenID Connect / OAuth client 3.0.0-alpha9 New alpha version released for module openid_connect (3.0.0-alpha9). Release: Opensolr Search 4.5.0 Minor update available for module opensolr_search (4.5.0). Release: Timelinr 1.0.1 Minor update available for module timelinr (1.0.1). Usage Milestone: Simplify Module simplify crossed 10,000 active installs. Usage Milestone: Views Reference Filter Module entityreference_filter crossed 10,000 active installs. Usage Milestone: Dropdown Language Module dropdown_language crossed 10,000 active installs. Usage Milestone: Paragraphs Browser Module paragraphs_browser crossed 10,000 active installs. Usage Milestone: OpenAPI Module openapi crossed 10,000 active installs. Usage Milestone: Decoupled Router Module decoupled_router crossed 10,000 active installs. Module Revived: Entityqueue Buttons 1.1.2 Module entityqueue_buttons updated after 8 months of inactivity (1.1.2).

This project enables file uploads through GraphQL mutations using the "Multipart HTTP Request" standard. It validates uploads against field settings and supports any file field on any entity type, returning detailed error information for invalid uploads.

About

Enable file upload mutations for GraphQL using the Multipart HTTP Request. Based on module graphql_compose.

Features

  • Upload files via GraphQL mutations
  • Validates file uploads against field instance settings
  • Supports any file field on any entity type
  • Returns proper error violations for invalid uploads
  • Based on the GraphQL Compose schema

Requirements

Usage

GraphQL Mutation

The module adds a fileUpload mutation to the GraphQL schema:

mutation UploadFile($file: Upload!, $metadata: fieldMetadata!) {
  fileUpload(file: $file, metadata: $metadata) {
    errors {
      message
    }
    results {
      entity {
        ... on File {
          id
          url
          filename
        }
      }
    }
  }
}

Metadata Input

The fieldMetadata input requires:

Field Type Description field_name String! The machine name of the file field entity_type EntityType! The entity type (node, user, etc.) entity_bundle String! The bundle of the entity

Example: Upload a File

JS example

const operation = {
  query: `
    mutation UploadFile($file: Upload!, $metadata: fieldMetadata!) {
      fileUpload(file: $file, metadata: $metadata) {
        errors {
          message
        }
        results {
          entity {
            ... on File {
              id
              url
              filename
              mimetype
              filesize
            }
          }
        }
      }
    }
  `,
  variables: {
    file: null, // Set by FormData
    metadata: {
      field_name: 'field_document',
      entity_type: 'node',
      entity_bundle: 'article',
    },
  },
};

const formData = new FormData();
formData.append('operations', JSON.stringify(operation));
formData.append('map', JSON.stringify({ 0: ['variables.file'] }));
formData.append(0, fileUpload);

fetch('https://example.com/graphql', {
  method: 'POST',
  body: formData,
});

curl example

# Create file
curl https://example.com/graphql \
  -F operations='{  "query": "fileUploadMutation ($file: Upload!) { fileUpload( file: $file, metadata: { field_name: \"field_my_file\", entity_type: NODE, entity_bundle: \"event\" } ) { errors results { entity_bundle entity_type id values } }}", "variables": { "file": null }}' \
  -F map='{ "0": ["variables.file"] }' \
  -F 0=@/path/to/myfile.pdf

# Create image
curl https://example.com/graphql \
  -F operations='{  "query": "mutation ($file: Upload!) { fileUpload( file: $file, metadata: { field_name: \"field_my_file\", entity_type: NODE, entity_bundle: \"event\" } ) { errors results { entity_bundle entity_type id values } }}", "variables": { "file": null }}' \
  -F map='{ "0": ["variables.file"] }' \
  -F 0=@/path/to/myimage.jpeg

Response Type

The mutation returns an AnyFileUploadResponse with:

Field Type Description errors [Violation] Array of validation violations (if any) results AnyEntity The uploaded file entity

Security

  • File uploads are validated against Drupal's field instance settings
  • File size restrictions are enforced
  • Allowed file extensions are validated
  • Access control respects Drupal's permissions

Troubleshooting

Upload returns validation errors

Check that:

  1. The field exists on the specified entity bundle
  2. The file extension is allowed by the field settings
  3. The file size is within limits
  4. The user has permission to create files

File is not saved

Ensure:

  1. The file system is writable
  2. The upload directory exists and is configured
  3. PHP's upload_max_filesize and post_max_size are sufficient

Depends on

Dependencies of the latest stable release

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
3
Tracked since
Jan 2026
Latest release
7 months ago
Releases (12 mo)
3 ▲ from 0
Maintenance
Slowing

Release Timeline

Releases

Version Type Core Release date
2.0.1 Stable 10–11 Jan 23, 2026
2.0.x-dev Dev 10–11 Jan 23, 2026
1.0.x-dev Dev Jan 23, 2026