OBJECT
OrderTemplate
Order templates used to seed new orders.
link GraphQL Schema definition
- type OrderTemplate {
- # The unique order template id.
- Int! :
- # The name of the order template.
- String :
- # The comments on an order.
- String :
- # The duration (days) on an order
- Int :
- # The order tags associated to the template
- Tag] : [
- # The tasks associate to the template
- OrderTemplateTask] : [
- # The user that created this order template.
- User :
- # The date the order template was created in UTC+0.
- DateTime! :
- # The user that modified this order template.
- User :
- # The date the order template was modified in UTC+0.
- DateTime :
- # The date the order template was deleted in UTC+0.
- DateTime :
- # The user who deleted the order template.
- User :
- }