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).
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the owning user.
  • ownerId: ID!
  • # Field whose values are strictly defined with an enumeration of values.
  • type: ChatConversationTypeEnum
  • # Messages exchanged in the conversation, in chronological order.
  • messages: [CreateTextMessageNoChatConversationBackrefInput!]
  • }

link Require by