Add files via upload

This commit is contained in:
Jaime Idolpx 2024-10-06 18:02:11 -05:00 committed by GitHub
parent b4f437571e
commit 391b9b5440
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,8 @@ type UserRecords {
} }
type Release { type Release {
ID: Int! ID: Int!
Name: String! Name: String!
@ -121,6 +123,8 @@ type ReleaseCommentData {
} }
type Group { type Group {
ID: Int! ID: Int!
Name: String! Name: String!
@ -180,6 +184,9 @@ type GroupMember {
Status: String Status: String
} }
type Scener { type Scener {
ID: Int! ID: Int!
RegisterdDate: String RegisterdDate: String
@ -201,6 +208,8 @@ type Scener {
} }
type Handle { type Handle {
ID: Int! ID: Int!
Handle: String! Handle: String!
@ -314,6 +323,9 @@ type EventOrganizers {
Handles: [Handle] Handles: [Handle]
} }
type BBS { type BBS {
ID: Int! ID: Int!
Name: String! Name: String!
@ -356,6 +368,8 @@ type BBSSysop {
} }
type SID { type SID {
ID: Int! ID: Int!
HVSCPath: String HVSCPath: String
@ -384,6 +398,8 @@ type SID {
} }
type Query { type Query {
release(id: Int!) : Release release(id: Int!) : Release
group(id: Int!) : Group group(id: Int!) : Group