Jayden Seric 4d258cf0d5 Removed encoding from the File type.
It was missleading, as the encoding was only for the upload stream, not the file contents when stored.
2018-09-18 22:08:10 +10:00

13 lines
145 B
JavaScript

import gql from 'graphql-tag'
export default gql`
query uploads {
uploads {
id
filename
mimetype
path
}
}
`