From 1a41e9d5ea8eeed06a0daf4c55f4d4431a50bbc1 Mon Sep 17 00:00:00 2001 From: idolpx Date: Tue, 7 Jun 2022 19:14:04 -0500 Subject: [PATCH] Update schema.graphql Renamed Date type to FuzzyDate --- server/schema.graphql | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/server/schema.graphql b/server/schema.graphql index 1ddc431..d1b35aa 100644 --- a/server/schema.graphql +++ b/server/schema.graphql @@ -1,6 +1,6 @@ -type Date { +type FuzzyDate { Operator: String Day: Int Month: Int @@ -42,7 +42,7 @@ type Release { Type: String GfxType: String Rating: Float - ReleaseDate: [Date] + ReleaseDate: [FuzzyDate] ReleasedAt: Int Achievement: ReleaseAchievement @@ -128,8 +128,8 @@ type Group { Trivia: String BaseCountry: String - FoundDate: [Date] - DissolveDate: [Date] + FoundDate: [FuzzyDate] + DissolveDate: [FuzzyDate] Website: String Grouptypes: [String] @@ -167,8 +167,8 @@ type GroupMember { HandleID: Int Profession: [String] - JoinDate: [Date] - LeaveDate: [Date] + JoinDate: [FuzzyDate] + LeaveDate: [FuzzyDate] Status: String } @@ -179,8 +179,8 @@ type Scener { RegisterdDate: String Country: String - BirthDate: [Date] - DeathDate: [Date] + BirthDate: [FuzzyDate] + DeathDate: [FuzzyDate] HandleIDs: [Int] @@ -238,8 +238,8 @@ type Event { AKA: String Tagline: String - StartDate: [Date] - EndDate: [Date] + StartDate: [FuzzyDate] + EndDate: [FuzzyDate] Address: String City: String @@ -319,8 +319,8 @@ type BBS { } type BBSOnlinePeriod { - StartDate: [Date] - EndDate: [Date] + StartDate: [FuzzyDate] + EndDate: [FuzzyDate] } type BBSSysop {