OBJECT
SparkyChat
link GraphQL Schema definition
- type SparkyChat implements Node {
- : ID!
- # Whether or not this chat is closed. Closed chats cannot process new messages.
- : Boolean!
- # The type of chat this is. Determine how messages will be processed
- : SparkyChatChatType!
- # The type of entity this chat is associated with.
- : String
- # The ID of the entity this chat is associated with.
- : Int
- : Time!
- : Time!
- # The user who started this chat.
- : User!
- # The messages in this chat.
- : [SparkyChatMessage!]
- # The comment this chat was started from.
- : Comment
- : ReflectionAnalysis
- : Post
- : SparkyQuery
- }