It was missleading, as the encoding was only for the upload stream, not the file contents when stored.
13 lines
145 B
JavaScript
13 lines
145 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export default gql`
|
|
query uploads {
|
|
uploads {
|
|
id
|
|
filename
|
|
mimetype
|
|
path
|
|
}
|
|
}
|
|
`
|