mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
23 lines
403 B
TypeScript
23 lines
403 B
TypeScript
export const GET_ABOUT_SERVER = `
|
|
query GetAboutServer {
|
|
aboutServer {
|
|
name version buildType buildTime github discord
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const GET_ABOUT_WEBUI = `
|
|
query GetAboutWebUI {
|
|
aboutWebUI {
|
|
channel tag updateTimestamp
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const CHECK_FOR_SERVER_UPDATES = `
|
|
query CheckForServerUpdates {
|
|
checkForServerUpdates {
|
|
channel tag url
|
|
}
|
|
}
|
|
`; |