Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion services/channel/workflows/src/generated/graphql.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2921,7 +2921,7 @@ export type PlaylistsQueryVariables = Exact<{
}>;


export type PlaylistsQuery = { __typename?: 'Query', filtered?: { __typename?: 'PlaylistsConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: any | null }, nodes: Array<{ __typename?: 'Playlist', id: any, startDateTime: any, calculatedDurationInSeconds: number, createdDate: any, updatedDate: any, publicationState: PublicationState, publishedDate?: any | null, programs: { __typename?: 'ProgramsConnection', totalCount: number } }> } | null, nonFiltered?: { __typename?: 'PlaylistsConnection', totalCount: number } | null };
export type PlaylistsQuery = { __typename?: 'Query', filtered?: { __typename?: 'PlaylistsConnection', totalCount: number, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: any | null }, nodes: Array<{ __typename?: 'Playlist', id: any, startDateTime: any, calculatedDurationInSeconds: number, title: string, createdDate: any, updatedDate: any, publicationState: PublicationState, publishedDate?: any | null, programs: { __typename?: 'ProgramsConnection', totalCount: number } }> } | null, nonFiltered?: { __typename?: 'PlaylistsConnection', totalCount: number } | null };

export type ProgramQueryVariables = Exact<{
id: Scalars['UUID'];
Expand Down Expand Up @@ -3726,6 +3726,7 @@ export const PlaylistsDocument = gql`
id
startDateTime
calculatedDurationInSeconds
title
programs {
totalCount
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ query Playlists($filter: PlaylistFilter, $orderBy: [PlaylistsOrderBy!], $after:
id
startDateTime
calculatedDurationInSeconds
title
programs{
totalCount
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ export const Playlists: React.FC = () => {
label: 'Scheduled Start',
render: DateRenderer,
},
{
propertyName: 'title',
size: '1.5fr',
label: 'Title',
},
{
propertyName: 'programs',
size: '0.8fr',
Expand Down