INTERFACE
OrderHistoryEntry
link GraphQL Schema definition
1 interface OrderHistoryEntry { 2 : Int! 3 4 # Arguments 5 # format: ISO-8601 6 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 7 8 : OrderHistoryEntryType! 9 10 : String 11 12 # Required permission: AdminUser:read 13 : AdminUser 14 15 # Email of the user when the user logged in with an organization (SSO). 16 # In this case, `adminUser` will represent the organization, `organizationUserEmail` will show a real user email 17 : String 18 19 # Required permission: none 20 # 21 # Store restrictions apply. 22 : Order! 23 24 }