ohmyform-ui/graphql/fragment/submission.fragment.ts
Michael Schramm 8d81390c83 apply eslint
2020-06-09 11:54:50 +02:00

17 lines
248 B
TypeScript

import { gql } from 'apollo-boost'
export interface SubmissionFragment {
id?: string
title: string
created: string
}
export const FORM_FRAGMENT = gql`
fragment Submission on Submission {
id
title
language
showFooter
}
`