公告板
版本库
filestore
活动
搜索
登录
main
/
new-ryc
蓉易创
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
初始化
lrj
4 天以前
c61d4fe27c97d2ecc907756aa571a4ef14a7b9b6
[new-ryc.git]
/
backend
/
src
/
main
/
resources
/
graphql
/
schema.graphqls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# GraphQL Schema 定义
# 查询根类型
type Query {
# 测试查询
hello: String
}
# 变更根类型
type Mutation {
# 测试变更
echo(message: String!): String
}
# 订阅根类型
type Subscription {
# 测试订阅
messageAdded: String
}