subscription OnCreateMessage()

in amplify-video-frontend/src/graphql/subscriptions.js [5:24]


  subscription OnCreateMessage($channelId: ID) {
    onCreateMessage(channelId: $channelId) {
      id
      channelId
      username
      content
      createdAt
      channel {
        id
        name
        url
        createdAt
        messages {
          nextToken
        }
        updatedAt
      }
      updatedAt
    }
  }