123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- export const UserPersonalSettingsFragmentDoc = gql`
- fragment userPersonalSettings on User {
- personalSettings {
- notificationConfig {
- groupIds
- matrix {
- create {
- channel {
- email
- online
- }
- criteria {
- no
- ownedByMe
- ownedByNobody
- subscribed
- }
- }
- escalation {
- channel {
- email
- online
- }
- criteria {
- no
- ownedByMe
- ownedByNobody
- subscribed
- }
- }
- reminderReached {
- channel {
- email
- online
- }
- criteria {
- no
- ownedByMe
- ownedByNobody
- subscribed
- }
- }
- update {
- channel {
- email
- online
- }
- criteria {
- no
- ownedByMe
- ownedByNobody
- subscribed
- }
- }
- }
- }
- notificationSound {
- enabled
- file
- }
- }
- }
- `;
|