mutation UpdateChannel()

in amplify-video-frontend/src/graphql/mutations.js [30:52]


  mutation UpdateChannel(
    $input: UpdateChannelInput!
    $condition: ModelChannelConditionInput
  ) {
    updateChannel(input: $input, condition: $condition) {
      id
      name
      url
      createdAt
      messages {
        items {
          id
          channelId
          username
          content
          createdAt
          updatedAt
        }
        nextToken
      }
      updatedAt
    }
  }