userCurrentTaskbarItemAttributes.api.ts 815 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. import { TicketTaskbarTabAttributesFragmentDoc } from '../../../../../../../shared/entities/ticket/graphql/fragments/ticketTaskbarTabAttributes.api';
  4. export const UserCurrentTaskbarItemAttributesFragmentDoc = gql`
  5. fragment userCurrentTaskbarItemAttributes on UserTaskbarItem {
  6. id
  7. key
  8. callback
  9. formId
  10. formNewArticlePresent
  11. entity {
  12. ... on Ticket {
  13. ...ticketTaskbarTabAttributes
  14. }
  15. ... on UserTaskbarItemEntityTicketCreate {
  16. uid
  17. title
  18. createArticleTypeKey
  19. }
  20. ... on User {
  21. id
  22. internalId
  23. }
  24. ... on Organization {
  25. id
  26. internalId
  27. }
  28. }
  29. entityAccess
  30. prio
  31. changed
  32. dirty
  33. notify
  34. updatedAt
  35. }
  36. ${TicketTaskbarTabAttributesFragmentDoc}`;