INPUT_OBJECT

CreateMessageInput

Autogenerated input type of CreateMessage

link GraphQL Schema definition

  • input CreateMessageInput {
  • # A unique identifier for the client performing the mutation.
  • client_mutation_id: String
  • # Run the mutation with no side effects in validate-only mode. When true, the
  • # inputs will be validated and errors will be returned, but the mutation will not
  • # perform any actions.
  • skip_save: Boolean
  • # Message content
  • content: String!
  • # File path on S3
  • s3_path: String
  • # File name
  • file_name: String
  • # File type
  • file_type: String
  • # File size
  • file_size: Int
  • # ID of the media
  • media_id: ID
  • # ID of the album
  • album_id: ID
  • # ID of the release
  • release_id: ID
  • # ID of the user
  • user_id: ID
  • }