GraphQL OBJECT

FollowUp

Reminder about open product and purchase issues.

link Definition

  • type FollowUp {
  • # Purchase to which the follow-up relates.
  • purchase: Purchase
  • # Product to which the follow-up relates.
  • product: Product
  • # Unique identifier of the follow-up.
  • id: Int
  • # Department for whom the follow-up is intended.
  • department: Department
  • # Office for whom the follow-up is intended.
  • office: Office
  • # Reason for the follow-up.
  • followUpReason: FollowUpReason
  • # User who created the follow-up.
  • createdBy: UserAccount
  • # Date and time when the follow-up will be/has been activated.
  • dateTime: DateTime
  • # Indicates whether the follow-up is finished.
  • isDone: Boolean
  • # Additional information about the follow-up.
  • notes: String
  • # Indicates whether a visual reminder, such as a pop-up, is displayed for the
  • # follow-up.
  • showReminder: Boolean
  • # Subject line for the follow-up.
  • subject: String
  • # User for whom the follow-up is intended.
  • userAccount: UserAccount
  • # The client to whom the follow up belongs.
  • client: Client
  • # The client which is referenced in this followUp. For internal use only.
  • referencedClient: Client
  • # Date and time when the follow-up was created.
  • creationDate: DateTime
  • # Date and time when the follow-up was last modified.
  • lastModifyDate: DateTime
  • # User who last modified the follow-up.
  • lastModifiedBy: UserAccount
  • }