59f7b6ff26
This reverts commit 18910fa2ed470fe12ffbfb83df18e206101f0a05.
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
import { gql } from 'graphql-tag'
|
|
|
|
export default gql`
|
|
scalar JSONObject
|
|
|
|
extend type Mutation {
|
|
getSignedPOST(type: String!, size: Int!, width: Int!, height: Int!): SignedPost!
|
|
}
|
|
|
|
type SignedPost {
|
|
url: String!
|
|
fields: JSONObject!
|
|
}
|
|
`
|