const ORDER_FIELDS = { lineItems: { include: { option: true, }, }, employeeMobilePhone: true, booking: { include: { address: true, }, }, customer: { include: { phone: true, }, }, serviceProject: { include: { project: true, service: { include: { users: { include: { phone: true, homePhone: true, officePhone: true, }, }, }, }, }, }, } export default { ORDER_FIELDS, }