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