lrj
10 小时以前 f04f35b562760afbac0c477357e2a29f77aec3b9
backend/src/main/resources/graphql/player.graphqls
@@ -13,6 +13,12 @@
  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!]!
@@ -118,6 +124,7 @@
# 评分提交输入类型
input ActivityPlayerRatingInput {
  activityPlayerId: ID!
  stageId: ID!
  ratings: [ActivityPlayerRatingItemInput!]!
  comment: String
}