Skip to content

Commit 7d3407c

Browse files
committed
feat(graphql): add live query
1 parent 758991f commit 7d3407c

3 files changed

Lines changed: 495 additions & 0 deletions

File tree

bccm_core/lib/platform.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export 'package:bccm_core/src/features/graphql/queries/shorts.graphql.dart';
2525
export 'package:bccm_core/src/features/graphql/queries/studies.graphql.dart';
2626
export 'package:bccm_core/src/features/graphql/queries/live/events.graphql.dart';
2727
export 'package:bccm_core/src/features/graphql/queries/live/calendar_days.graphql.dart';
28+
export 'package:bccm_core/src/features/graphql/queries/live/live.graphql.dart';
2829
export 'package:bccm_core/src/features/graphql/queries/persons.graphql.dart';
2930
export 'package:bccm_core/src/features/graphql/queries/media/show.graphql.dart';
3031

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
query GetLive {
2+
live {
3+
isOnline
4+
url
5+
expiresAt
6+
}
7+
}

0 commit comments

Comments
 (0)