Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justinlevi/graphql_file_upload
Drupal 8 GraphQL file upload module
https://github.com/justinlevi/graphql_file_upload
drupal8 graphql symfony
Last synced: 9 days ago
JSON representation
Drupal 8 GraphQL file upload module
- Host: GitHub
- URL: https://github.com/justinlevi/graphql_file_upload
- Owner: justinlevi
- Created: 2017-12-21T16:42:10.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T13:42:53.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T02:21:23.264Z (about 1 month ago)
- Topics: drupal8, graphql, symfony
- Language: PHP
- Homepage:
- Size: 85.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# graphql_custom_file_upload
A Custom GraphQL File Upload Module
WIP - CURRENTLY BROKEN :(
gql
```
mutation($file: FileInput!) {
uploadFile(input: $file){
entity{
...on FileFile {
url
}
}
}
}
```The variable should look like this:
```$xslt
{
"file": {"file": __BINARY-FILE-DATA__}
}
```