13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
import { gql } from 'graphql-tag'
|
|
|
|
export default gql`
|
|
extend type Mutation {
|
|
getSignedPOST(type: String!, size: Int!, width: Int!, height: Int!): SignedPost!
|
|
}
|
|
|
|
type SignedPost {
|
|
url: String!
|
|
fields: JSONObject!
|
|
}
|
|
`
|