Update schema.graphql

Renamed Date type to FuzzyDate
This commit is contained in:
Jaime Idolpx 2022-06-07 19:14:04 -05:00 committed by GitHub
parent 5ec35a3c21
commit 1a41e9d5ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
type Date { type FuzzyDate {
Operator: String Operator: String
Day: Int Day: Int
Month: Int Month: Int
@ -42,7 +42,7 @@ type Release {
Type: String Type: String
GfxType: String GfxType: String
Rating: Float Rating: Float
ReleaseDate: [Date] ReleaseDate: [FuzzyDate]
ReleasedAt: Int ReleasedAt: Int
Achievement: ReleaseAchievement Achievement: ReleaseAchievement
@ -128,8 +128,8 @@ type Group {
Trivia: String Trivia: String
BaseCountry: String BaseCountry: String
FoundDate: [Date] FoundDate: [FuzzyDate]
DissolveDate: [Date] DissolveDate: [FuzzyDate]
Website: String Website: String
Grouptypes: [String] Grouptypes: [String]
@ -167,8 +167,8 @@ type GroupMember {
HandleID: Int HandleID: Int
Profession: [String] Profession: [String]
JoinDate: [Date] JoinDate: [FuzzyDate]
LeaveDate: [Date] LeaveDate: [FuzzyDate]
Status: String Status: String
} }
@ -179,8 +179,8 @@ type Scener {
RegisterdDate: String RegisterdDate: String
Country: String Country: String
BirthDate: [Date] BirthDate: [FuzzyDate]
DeathDate: [Date] DeathDate: [FuzzyDate]
HandleIDs: [Int] HandleIDs: [Int]
@ -238,8 +238,8 @@ type Event {
AKA: String AKA: String
Tagline: String Tagline: String
StartDate: [Date] StartDate: [FuzzyDate]
EndDate: [Date] EndDate: [FuzzyDate]
Address: String Address: String
City: String City: String
@ -319,8 +319,8 @@ type BBS {
} }
type BBSOnlinePeriod { type BBSOnlinePeriod {
StartDate: [Date] StartDate: [FuzzyDate]
EndDate: [Date] EndDate: [FuzzyDate]
} }
type BBSSysop { type BBSSysop {