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! } `