OBJECT
Conversation
link GraphQL Schema definition
- type Conversation {
- # Conversation unique id
- UUID! :
- # Legacy conversation id
- LegacyId :
- # Conversation creation date
- DateTime! :
- # Conversation closing date
- DateTime :
- # Conversation channel
- String! :
- # Conversation duration in seconds from visitor initiation time to user closing
- # time using iso 8601 format
- String :
- # List of visitors who participated to this conversation
- ConversationVisitor!] @deprecated( reason: "Please use the visitor field instead" ) : [
- # Satisfaction survey answered by visitor
- SatisfactionSurvey :
- # Timeline of the conversation represented by the routing events that took place
- RoutingEvent!]! : [
- # Conversions associated to the conversation
- Conversions :
- # The visitor who participated to this conversation
- Visitor :
- # List of visitors who participated to this conversation
- #
- # Arguments
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # first: Returns the first n elements from the list.
- # last: Returns the last n elements from the list.
- (
- String, :
- String, :
- Int, :
- Int :
- ): ConversationVisitorConnection @deprecated( reason: "Please use the visitor field instead" )
- # Users who participated to the conversation. This data is not consistent, we
- # recommend not to use this information
- User!] : [
- # Tags of the conversation
- ConversationTag!]! : [
- # Targeting Rule of the conversation. This data is not consistent, we recommend
- # not to use this information
- TargetingRule :
- # The project details
- Project :
- # Language of the conversation
- Language :
- # Messages of the conversation
- #
- # Arguments
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # first: Returns the first n elements from the list.
- # last: Returns the last n elements from the list.
- String, : String, : Int, : Int): ConversationMessageConnection ( :
- # Represents the current status of the conversation, with extra information
- # depending on the status
- ConversationDistributionStatus :
- }