query ListMessagesByChannel()

in amplify-video-frontend/src/graphql/queries.js [96:129]


  query ListMessagesByChannel(
    $channelId: ID
    $createdAt: ModelStringKeyConditionInput
    $sortDirection: ModelSortDirection
    $filter: ModelMessageFilterInput
    $limit: Int
    $nextToken: String
  ) {
    listMessagesByChannel(
      channelId: $channelId
      createdAt: $createdAt
      sortDirection: $sortDirection
      filter: $filter
      limit: $limit
      nextToken: $nextToken
    ) {
      items {
        id
        channelId
        username
        content
        createdAt
        channel {
          id
          name
          url
          createdAt
          updatedAt
        }
        updatedAt
      }
      nextToken
    }
  }