Thread Edge
An edge in a connection.
The item of the edge.
{ "node": { "authorizedParticipants": [ { "__typename": "ThreadParticipant" } ], "businessId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "currentParticipants": [ { "__typename": "ThreadParticipant" } ], "customerOrganization": { "__typename": "ThreadCustomerOrganization" }, "dateCreated": "Example Custom Scalar", "entities": [ { "__typename": "ThreadEntity" } ], "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "messages": [ { "__typename": "ThreadMessage" } ], "metadata": { "__typename": "ThreadMetadata" }, "topic": { "__typename": "ThreadTopic" } } }
Thread
Represents a thread.
Thread authorized participants. Those are the participants who are authorized to join the thread.
Thread current participants. Those are the participants who have actually participated in the thread, meaning that they are either sender or receivers of at least one message of the thread.
Data related to the customer organization (B2B transactions)
Thread creation date
Thread entities
Thread id
Thread messages
Thread metadata
Thread topic
Implements interfaces
{ "authorizedParticipants": [ { "__typename": "ThreadParticipant" } ], "businessId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "currentParticipants": [ { "__typename": "ThreadParticipant" } ], "customerOrganization": { "__typename": "ThreadCustomerOrganization" }, "dateCreated": "Example Custom Scalar", "entities": [ { "__typename": "ThreadEntity" } ], "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "messages": [ { "__typename": "ThreadMessage" } ], "metadata": { "__typename": "ThreadMetadata" }, "topic": { "__typename": "ThreadTopic" } }
Thread Message
Represents a message in a thread.
Message attachments
Message body
Message creation date
Message sender
Message id
Message recipients
{ "attachments": [ { "__typename": "ThreadMessageAttachment" } ], "body": "Example String", "dateCreated": "Example Custom Scalar", "from": { "__typename": "ThreadMessageSender" }, "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "to": [ { "__typename": "ThreadMessageRecipient" } ] }
Thread Message Sender
Represents the sender of a message.
Sender display name
Organization details of the sender
Sender type. Possible values are: CUSTOMER, OPERATOR, SHOP
{ "displayName": "Example String", "organizationDetails": { "__typename": "ThreadMessageSenderOrganization" }, "type": "Example String" }