OrderRevision
No description
type OrderRevision {
orderId: Int!
revisionNumber: Int!
createdByContactId: Int
createdByCustomerId: Int
createdByAdminUserId: Int
lastModifiedByAdminUserId: Int
lastModifiedByContactId: Int
lastModifiedByCustomerId: Int
createdByAdminUser: AdminUser
lastModifiedByAdminUser: AdminUser
createdAt: DateTime!
lastModifiedAt: DateTime!
createdFromRevisionNumber: Int
snapshot: Order!
createdByContact: Contact
createdByCustomer: Customer
lastModifiedByContact: Contact
lastModifiedByCustomer: Customer
}
Fields
OrderRevision.orderId ● Int! non-null scalar
ID of the order this revision belongs to
OrderRevision.revisionNumber ● Int! non-null scalar
Revision number
OrderRevision.createdByContactId ● Int scalar
ID of the contact who created this revision
OrderRevision.createdByCustomerId ● Int scalar
ID of the customer who created this revision
OrderRevision.createdByAdminUserId ● Int scalar
ID of the admin user who created this revision
OrderRevision.lastModifiedByAdminUserId ● Int scalar
ID of the admin user who last modified this revision
OrderRevision.lastModifiedByContactId ● Int scalar
ID of the contact who last modified this revision
OrderRevision.lastModifiedByCustomerId ● Int scalar
ID of the customer who last modified this revision
OrderRevision.createdByAdminUser ● AdminUser object
Admin user that created the revision
OrderRevision.lastModifiedByAdminUser ● AdminUser object
Admin user that last modified the revision
OrderRevision.createdAt ● DateTime! non-null scalar
Date and time when this revision was created
OrderRevision.lastModifiedAt ● DateTime! non-null scalar
Date and time when this revision was last modified
OrderRevision.createdFromRevisionNumber ● Int scalar
The revision this was created from
OrderRevision.snapshot ● Order! non-null object
Complete snapshot of the order data at the time this revision was created
OrderRevision.createdByContact ● Contact object
Contact that created the revision
OrderRevision.createdByCustomer ● Customer object
Customer that created the revision
OrderRevision.lastModifiedByContact ● Contact object
Contact that last modified the revision
OrderRevision.lastModifiedByCustomer ● Customer object
Customer that last modified the revision
Returned By
orderRevision query
Member Of
Order object ● OrderRevisionResponse object