You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #924 the GraphQL schema for archived recordings was changed to include aggregate information alongside the actual recording list itself.
type Recordings {
active(filter: ActiveRecordingFilterInput): [ActiveRecording!]!
archived(filter: ArchivedRecordingFilterInput): Archived!
}
...
type Archived {
data: [ArchivedRecording!]!
aggregate: AggregateInfo!
}
type AggregateInfo {
count: Long!
}
Active recordings should mirror this change for consistency purposes. Adding more aggregate information fields alongside the count for both types of recordings would be nice as well.
The text was updated successfully, but these errors were encountered:
In #924 the GraphQL schema for archived recordings was changed to include aggregate information alongside the actual recording list itself.
Active recordings should mirror this change for consistency purposes. Adding more aggregate information fields alongside the count for both types of recordings would be nice as well.
The text was updated successfully, but these errors were encountered: