chore: move config behind checks (#1211)

This commit is contained in:
Ali BARIN
2023-08-11 22:32:13 +02:00
committed by GitHub
parent a6a124d2e6
commit 25983e046c
8 changed files with 13 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
import { gql } from '@apollo/client';
export const UPDATE_CONFIG = gql`
mutation UpdateConfig($input: JSONObject) {
updateConfig(input: $input)
}
`;