userCalendarSubscriptionAttributes.api.ts 523 B

1234567891011121314151617181920212223242526272829303132
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const UserCalendarSubscriptionAttributesFragmentDoc = gql`
  4. fragment userCalendarSubscriptionAttributes on UserPersonalSettingsCalendarSubscriptionsConfig {
  5. combinedUrl
  6. globalOptions {
  7. alarm
  8. }
  9. newOpen {
  10. url
  11. options {
  12. own
  13. notAssigned
  14. }
  15. }
  16. pending {
  17. url
  18. options {
  19. own
  20. notAssigned
  21. }
  22. }
  23. escalation {
  24. url
  25. options {
  26. own
  27. notAssigned
  28. }
  29. }
  30. }
  31. `;