| | |
| | | averageScoreForPlayer(activityPlayerId: ID!): Float |
| | | currentJudgeInfo: CurrentJudgeInfoResponse |
| | | |
| | | # 权限检查查询 |
| | | isJudgeInActivity(stageId: ID!, judgeId: ID!): Boolean! |
| | | |
| | | # 获取指定评委的评分明细 |
| | | judgeRatingDetail(activityPlayerId: ID!, judgeId: ID!): CurrentJudgeRatingResponse |
| | | |
| | | # 比赛晋级相关查询 |
| | | promotionCompetitions(name: String, page: Int, size: Int): [PromotionCompetitionResponse!]! |
| | | competitionParticipants(competitionId: ID!, page: Int, size: Int): [CompetitionParticipantResponse!]! |
| | |
| | | # 评分提交输入类型 |
| | | input ActivityPlayerRatingInput { |
| | | activityPlayerId: ID! |
| | | stageId: ID! |
| | | ratings: [ActivityPlayerRatingItemInput!]! |
| | | comment: String |
| | | } |