mutation CreateChannel()

in amplify-video-frontend/src/graphql/mutations.js [5:27]


  mutation CreateChannel(
    $input: CreateChannelInput!
    $condition: ModelChannelConditionInput
  ) {
    createChannel(input: $input, condition: $condition) {
      id
      name
      url
      createdAt
      messages {
        items {
          id
          channelId
          username
          content
          createdAt
          updatedAt
        }
        nextToken
      }
      updatedAt
    }
  }