OBJECT

OrderTemplate

Order templates used to seed new orders.

link GraphQL Schema definition

  • type OrderTemplate {
  • # The unique order template id.
  • id: Int!
  • # The name of the order template.
  • name: String
  • # The comments on an order.
  • order_comment: String
  • # The duration (days) on an order
  • order_duration: Int
  • # The order tags associated to the template
  • order_tags: [Tag]
  • # The tasks associate to the template
  • template_tasks: [OrderTemplateTask]
  • # The user that created this order template.
  • created_by: User
  • # The date the order template was created in UTC+0.
  • created_time: DateTime!
  • # The user that modified this order template.
  • modified_by: User
  • # The date the order template was modified in UTC+0.
  • modified_time: DateTime
  • # The date the order template was deleted in UTC+0.
  • deleted_time: DateTime
  • # The user who deleted the order template.
  • deleted_by: User
  • }