Codex Assistant
22 小时以前 58d9f460b2f8c34430285115e2557d18333c5cab
backend/src/main/resources/graphql/player.graphqls
@@ -2,7 +2,7 @@
    myActivityPlayer(activityId: ID!): ActivityPlayer
    activityPlayerApplications(name: String, activityId: ID, state: Int, page: Int, size: Int): PlayerApplicationPageResponse
    # 项目评审专用查询,包含所有阶段数据(包括复赛、决赛)
    projectReviewApplications(name: String, activityId: ID, state: Int, page: Int, size: Int): ProjectReviewApplicationPageResponse
    projectReviewApplications(name: String, activityId: ID, regionId: ID, state: Int, page: Int, size: Int): ProjectReviewApplicationPageResponse
    # 获取指定选手的所有评委评分状态
    judgeRatingsForPlayer(activityPlayerId: ID!): [JudgeRatingStatusResponse!]!
    # 获取指定选手的平均分
@@ -56,7 +56,7 @@
type Player {
    id: ID!
    name: String
    phone: String
    phone: String @deprecated(reason: "此字段已废弃,请使用关联User实体的phone字段")
}
type PlayerApplicationPageResponse {
@@ -175,7 +175,7 @@
type PlayerInfoResponse {
    id: ID
    name: String
    phone: String
    phone: String @deprecated(reason: "此字段已废弃,请使用userInfo.phone字段")
    gender: Int
    birthday: String
    education: String