OBJECT

SparkyChat

link GraphQL Schema definition

  • type SparkyChat implements Node {
  • id: ID!
  • # Whether or not this chat is closed. Closed chats cannot process new messages.
  • closed: Boolean!
  • # The type of chat this is. Determine how messages will be processed
  • chattype: SparkyChatChatType!
  • # The type of entity this chat is associated with.
  • entitytype: String
  • # The ID of the entity this chat is associated with.
  • entityid: Int
  • createdAt: Time!
  • updatedAt: Time!
  • # The user who started this chat.
  • user: User!
  • # The messages in this chat.
  • messages: [SparkyChatMessage!]
  • # The comment this chat was started from.
  • comment: Comment
  • analysis: ReflectionAnalysis
  • post: Post
  • sparkyQuery: SparkyQuery
  • }