mutation DeleteMessage()

in amplify-video-frontend/src/graphql/mutations.js [130:152]


  mutation DeleteMessage(
    $input: DeleteMessageInput!
    $condition: ModelMessageConditionInput
  ) {
    deleteMessage(input: $input, condition: $condition) {
      id
      channelId
      username
      content
      createdAt
      channel {
        id
        name
        url
        createdAt
        messages {
          nextToken
        }
        updatedAt
      }
      updatedAt
    }
  }