in apps/community-website/src/shared/api/vod-fetch.ts [53:67]
async function fetchVodFiles(nextToken: string | null) {
if (nextToken !== null && nextToken !== '')
return API.graphql({
query: listVideoOnDemands,
variables: {
nextToken,
},
authMode: await getAuthMode(),
}) as GraphQLResult<APIt.ListVideoOnDemandsQuery>
else
return API.graphql({
query: listVideoOnDemands,
authMode: await getAuthMode(),
}) as GraphQLResult<APIt.ListVideoOnDemandsQuery>
}