OBJECT

SatisfactionConversation

link GraphQL Schema definition

  • type SatisfactionConversation {
  • # Conversation unique id
  • id: String!
  • # Date when the conversation was initiated
  • createdAt: DateTime!
  • # Date when the conversation was closed
  • closedAt: DateTime!
  • # The project which the conversation belongs to
  • project: Project
  • # Agents who took part in the conversation
  • agents: [User!]!
  • }