-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.graphqls
58 lines (49 loc) · 846 Bytes
/
base.graphqls
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
53
54
55
56
57
58
type Query {
players: [ServerPlayerEntity!]
}
type Subscription {
onBreakBlock: ServerPlayerEntity!
}
type ServerPlayerEntity {
name: Text!
# ip: String! # Disabled by default for security reasons
blockPos: BlockPos!
world: World
inventory: Inventory!
}
type BlockPos {
x: Int
y: Int
z: Int
}
type Inventory {
size: Int!
empty: Boolean!
stack(slot: Int!): ItemStack!
stacks: [ItemStack!]!
}
type ItemStack {
item: Item!
count: Int!
maxCount: Int!
name: Text!
isFood: Boolean!
empty: Boolean!
enchantable: Boolean!
}
type Item {
maxCount: Int!
toString: String!
group: ItemGroup
}
type ItemGroup {
index: Int!
name: String
}
type World {
time: Int!
timeOfDay: Int!
thundering: Boolean!
raining: Boolean!
}
scalar Text