2rabs/nito-app

View on GitHub
core/network/src/commonMain/graphql/ParticipantsQuery.graphql

Summary

Maintainability
Test Coverage
query ParticipantsQuery($scheduleIds: [uuid!]!) {
  participants(where: {scheduleId: {_in: $scheduleIds}}) {
    scheduleId
    userId
    status
  }
}