Codex Assistant
2 天以前 ba94ceae1315174798ae1967ef62268c6d16cd5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Dashboard 统计数据 GraphQL Schema
 
# Dashboard 统计数据响应类型
type DashboardStats {
    # 当前进行比赛数量
    activeActivities: Int!
    
    # 参赛总人数
    totalPlayers: Int!
    
    # 报名待审核人数
    pendingReviews: Int!
    
    # 评委总数
    totalJudges: Int!
}
 
# 报名趋势数据点
type RegistrationTrendPoint {
    # 日期(yyyy-MM-dd)
    date: String!
 
    # 报名数量
    count: Long!
}
 
# 区域报名统计
type RegionRegistrationStat {
    # 区域ID(可能为数字或UUID字符串,未选择时为空)
    regionId: ID
 
    # 区域名称
    regionName: String!
 
    # 是否叶子节点(数据缺失时为空)
    leafFlag: Boolean
 
    # 报名数量
    count: Long!
}
 
# 扩展查询
extend type Query {
    # 获取Dashboard统计数据
    dashboardStats: DashboardStats!
 
    # 获取最近报名趋势
    registrationTrend(days: Int): [RegistrationTrendPoint!]!
 
    # 获取区域报名分布
    registrationRegionStats: [RegionRegistrationStat!]!
}