-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.gql
65 lines (59 loc) · 1.16 KB
/
schema.gql
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
59
60
61
62
63
64
65
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type VillagerModel {
name: String
image: String
house: String
species: String
gender: String
personality: String
hobby: String
birthdayString: String
catchphrase: String
favSong: String
style: [String!]
color: [String!]
wallpaper: String
flooring: String
}
type MonthsModel {
jan: String
feb: String
mar: String
apr: String
may: String
jun: String
jul: String
aug: String
sep: String
oct: String
nov: String
dec: String
}
type HemisphereAvailabilityModel {
north: MonthsModel
south: MonthsModel
}
type InsectModel {
entryId: Float
name: String
iconImage: String
critterpediaImage: String
furnitureImage: String
size: String
sellingPrice: Float
catchingLocation: String
weather: String
totalCatchesToUnlock: Float
spawnRates: String
availability: HemisphereAvailabilityModel
color: [String!]
}
type CritterpediaModel {
allInsects: [InsectModel!]
}
type Query {
allVillagers: [VillagerModel!]!
critterpedia: CritterpediaModel!
}