mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
17 lines
248 B
TypeScript
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
|
|
}
|
|
`
|