OBJECT

Dispatch

link GraphQL Schema definition

  • type Dispatch {
  • id: String!
  • orgId: Uuid
  • userId: Uuid
  • orgName: String
  • # Dispatch author (user id)
  • authorId: Uuid
  • # Dispatch account (if present)
  • accountId: Uuid
  • # Dispatch swimlane (if present)
  • swimlaneId: Uuid
  • icon: String
  • swimlaneIcon: String
  • color: String
  • trackerId: Uuid
  • documentId: Uuid
  • # Dispatch calendar date
  • when: LocalDate
  • createdAt: DateTime!
  • updatedAt: DateTime!
  • # Enumeration of: default, hold, complete, started, confirm, entry, answer
  • taskState: String
  • taskStatus: String
  • startTime: DateTime
  • endTime: DateTime
  • # Dispatch channel id for comments
  • channelId: Uuid
  • # Tracker display for the body
  • displayFormat: String
  • # Tracker display for the header
  • headerFormat: String
  • # Tracker expression
  • displayExpression: String
  • # Author name
  • authorName: String
  • # User or swimlane name
  • displayName: String
  • # Username for recipient
  • recipientUserName: String
  • # Username for author
  • authorUserName: String
  • # Dispatch JSON data as flat string
  • data: String
  • # Body
  • body: String
  • # Body (as content blocks)
  • blocks: String
  • # Dispatch comments (deprecated)
  • comments: [Comment!]!
  • # Dispatch actions
  • actions: [Action!]!
  • # File attachments
  • attachments: [Attachment!]!
  • # Org scoped external unique id for entry
  • serviceId: String
  • # Shared batch id
  • batchId: String
  • # Tracker name
  • trackerName: String
  • # DEPRECATED
  • visibility: String
  • # Tracker handle
  • trackerHandle: String
  • # Tracker display name
  • trackerDisplayName: String
  • # Tracker handle group
  • trackerGroup: String
  • # Swimlane handle
  • swimlaneHandle: String
  • # Tracker configuration
  • trackerConfig: String
  • # Swimlane configuration
  • swimlaneConfig: String
  • # Org title of the user
  • orgTitle: String
  • # Global title of the user
  • globalTitle: String
  • # Program status when created
  • programStatus: String
  • # Program id when created
  • programId: Uuid
  • # Linked dispatch
  • linkedId: Uuid
  • # Linked tracker configured
  • taskTracker: Uuid
  • # Dispatch labels as flat string pipe separated
  • labels: String
  • # Dispatch hashtags as flat string pipe separated
  • hashtags: String
  • # Security level = org (default) | public | private | admin
  • security: String
  • # User location info (admin only)
  • userLocationCity: String
  • # User location info (admin only)
  • userLocationCountry: String
  • # User location info (admin only)
  • userLocationCountryCode: String
  • # User location info (admin only)
  • userLocationRegion: String
  • # Status: active|draft
  • status: String
  • # Geolocation unique identifier
  • geoId: String
  • # Author geolocation when posting unique identifier
  • geoIdAuthor: String
  • # Comment count
  • countComments: Long
  • # Prior change details
  • changeBlock: String
  • # Recurring dispatch id
  • clusterId: Uuid
  • # Meta info
  • metaInfo: String
  • }