create-post.ts 168 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import gql from 'graphql-tag'; export const CREATE_POST = gql` mutation CreatePost($input: CreatePostInput!) { createPost(input: $input) { id } } `;