Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Task] Add aggregate information for active recordings in the GraphQL API #1030

Closed
hareetd opened this issue Aug 2, 2022 · 1 comment · Fixed by #1066
Closed

[Task] Add aggregate information for active recordings in the GraphQL API #1030

hareetd opened this issue Aug 2, 2022 · 1 comment · Fixed by #1066
Assignees
Labels
feat New feature or request

Comments

@hareetd
Copy link
Contributor

hareetd commented Aug 2, 2022

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat New feature or request
Projects
None yet
3 participants