mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2026-01-16 01:34:31 +00:00
16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import { gql } from 'apollo-boost'
|
|
|
|
export interface SettingsQueryData {
|
|
disabledSignUp: {
|
|
value: boolean
|
|
}
|
|
}
|
|
|
|
export const SETTINGS_QUERY = gql`
|
|
query {
|
|
disabledSignUp: getByKey(key: "SIGNUP_DISABLED") {
|
|
value: isTrue
|
|
}
|
|
}
|
|
`
|