INPUT_OBJECT
CreateChatConversationInput
link GraphQL Schema definition
- input CreateChatConversationInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the owning user.
- : ID!
- # Field whose values are strictly defined with an enumeration of values.
- : ChatConversationTypeEnum
- # Messages exchanged in the conversation, in chronological order.
- : [CreateTextMessageNoChatConversationBackrefInput!]
- }