GraphQL Part1 (gql endpoint only) #162 #192

Merged
edraft merged 38 commits from #162 into 1.0.0 2023-02-11 10:30:42 +01:00
6 changed files with 48 additions and 5 deletions
Showing only changes of commit dbfae8d8a4 - Show all commits

View File

@ -10,4 +10,11 @@ type AutoRole implements TableQuery {
created_at: String
modified_at: String
}
input AutoRoleFilter {
id: ID
channel_id: String
message_id: String
server: ServerFilter
}

View File

@ -7,4 +7,11 @@ type AutoRoleRule implements TableQuery {
created_at: String
modified_at: String
}
input AutoRoleRuleFilter {
id: ID
emoji_name: String
role_id: String
auto_role: AutoRoleFilter
}

View File

@ -12,4 +12,16 @@ type Client implements TableQuery {
created_at: String
modified_at: String
}
input ClientFilter {
id: ID
discord_id: String
name: String
sent_message_count: Int
received_message_count: Int
deleted_message_count: Int
received_command_count: Int
moved_users_count: Int
server: ServerFilter
}

View File

@ -1,11 +1,11 @@
type Query {
auto_roles: [AutoRole]
auto_roles(filter: AutoRoleFilter, page: Page, sort: Sort): [AutoRole]
auto_role_count: Int
auto_role_rules: [AutoRole]
auto_role_rules(filter: AutoRoleRuleFilter, page: Page, sort: Sort): [AutoRole]
auto_role_rule_count: Int
clients: [Client]
clients(filter: ClientFilter, page: Page, sort: Sort): [Client]
client_count: Int
known_users: [KnownUser]
@ -17,10 +17,10 @@ type Query {
servers(filter: ServerFilter, page: Page, sort: Sort): [Server]
server_count: Int
user_joined_servers: [User]
user_joined_servers(filter: UserJoinedServerFilter, page: Page, sort: Sort): [User]
user_joined_server_count: Int
user_joined_voice_channels: [User]
user_joined_voice_channels(filter: UserJoinedVoiceChannelFilter, page: Page, sort: Sort): [User]
user_joined_voice_channel_count: Int
users(filter: UserFilter, page: Page, sort: Sort): [User]

View File

@ -7,4 +7,12 @@ type UserJoinedServer implements TableQuery {
created_at: String
modified_at: String
}
input UserJoinedServerFilter {
id: ID
user: UserFilter
server: ServerFilter
joined_on: String
leaved_on: String
}

View File

@ -8,4 +8,13 @@ type UserJoinedVoiceChannel implements TableQuery {
created_at: String
modified_at: String
}
input UserJoinedVoiceChannelFilter {
id: ID
channel_id: String
user: UserFilter
server: ServerFilter
joined_on: String
leaved_on: String
}