amfoss / amfoss/root

Create a query to fetch lab-wide aggregate data

Ouverte
#149 2 commentaires 0 réactions 1 personne assignée Réclamée par @tejasai2007 Voir sur GitHub
Langage dominant
Rust
Étoiles
4
Forks
23
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

Currently two root query objects exist in the GraphQL schema - `allMembers` and `members`, each of these are used to fetch details regarding members individually.

To support dashboard-level analytics and visualizations, we need to introduce a new root query object, lab, dedicated to aggregate and statistical data.

## Goal
Add a new lab query field in the GraphQL schema to provide aggregate insights, starting with daily attendance counts within a specified date range.

This will enable rendering of the attendance trend graph on the Home page (as shown below):

Attendance Graph

## Deliverables
- [ ] Introduce a new root-level lab query object.
- [ ] Within lab, implement an attendance(startDate, endDate) resolver.
- [ ] The resolver should return a list of objects containing:
> date: Date! — the date of attendance.
totalPresent: Int! — the total number of present members for that date.

Expected Schema would look something like this:
```graphql
query {
lab {
attendance(startDate: "1999-01-01", endDate: "1999-12-31") {
date,
totalPresent
}
}
}
```

Guide de contribution

Aucun guide de contribution indexé pour ce dépôt

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.