2022-05-12 13:44:21 -05:00

15 lines
266 B
JavaScript

import { gql } from 'apollo-server-micro'
export default gql`
scalar JSONObject
extend type Mutation {
getSignedPOST(type: String!, size: Int!, width: Int!, height: Int!): SignedPost!
}
type SignedPost {
url: String!
fields: JSONObject!
}
`