upload-apollo-client/api/schema.graphql
Jayden Seric aa63c4c500 Version 1.0.0.
Initial release.
2017-04-02 23:14:11 +10:00

23 lines
297 B
GraphQL

type File {
name: String!
type: String!
size: Int!
path: String!
}
input Upload {
name: String!
type: String!
size: Int!
path: String!
}
type Query {
# GraphQL will not work without defining a query.
ignore: Boolean
}
type Mutation {
singleUpload (file: Upload!): File!
}