mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
127 lines
3.7 KiB
TypeScript
127 lines
3.7 KiB
TypeScript
const TRACK_RECORD_FRAGMENT = `
|
|
id trackerId remoteId title status score displayScore
|
|
lastChapterRead totalChapters remoteUrl startDate finishDate private libraryId
|
|
`;
|
|
|
|
export const BIND_TRACK = `
|
|
mutation BindTrack($mangaId: Int!, $trackerId: Int!, $remoteId: LongString!) {
|
|
bindTrack(input: { mangaId: $mangaId, trackerId: $trackerId, remoteId: $remoteId }) {
|
|
trackRecord { ${TRACK_RECORD_FRAGMENT} }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const UPDATE_TRACK = `
|
|
mutation UpdateTrack($recordId: Int!, $status: Int, $lastChapterRead: Float, $scoreString: String, $startDate: LongString, $finishDate: LongString, $private: Boolean) {
|
|
updateTrack(input: { recordId: $recordId, status: $status, lastChapterRead: $lastChapterRead, scoreString: $scoreString, startDate: $startDate, finishDate: $finishDate, private: $private }) {
|
|
trackRecord {
|
|
id trackerId status score displayScore lastChapterRead totalChapters startDate finishDate private libraryId
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const UNBIND_TRACK = `
|
|
mutation UnbindTrack($recordId: Int!) {
|
|
unbindTrack(input: { recordId: $recordId }) {
|
|
trackRecord { id }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const FETCH_TRACK = `
|
|
mutation FetchTrack($recordId: Int!) {
|
|
fetchTrack(input: { recordId: $recordId }) {
|
|
trackRecord {
|
|
id trackerId status score displayScore lastChapterRead totalChapters startDate finishDate libraryId
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const TRACK_PROGRESS = `
|
|
mutation TrackProgress($mangaId: Int!) {
|
|
trackProgress(input: { mangaId: $mangaId }) {
|
|
trackRecords {
|
|
id trackerId lastChapterRead status
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const LOGIN_TRACKER_OAUTH = `
|
|
mutation LoginTrackerOAuth($trackerId: Int!, $callbackUrl: String!) {
|
|
loginTrackerOAuth(input: { trackerId: $trackerId, callbackUrl: $callbackUrl }) {
|
|
isLoggedIn
|
|
tracker { id name isLoggedIn isTokenExpired authUrl }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const LOGIN_TRACKER_CREDENTIALS = `
|
|
mutation LoginTrackerCredentials($trackerId: Int!, $username: String!, $password: String!) {
|
|
loginTrackerCredentials(input: { trackerId: $trackerId, username: $username, password: $password }) {
|
|
isLoggedIn
|
|
tracker { id name isLoggedIn isTokenExpired authUrl }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const LOGOUT_TRACKER = `
|
|
mutation LogoutTracker($trackerId: Int!) {
|
|
logoutTracker(input: { trackerId: $trackerId }) {
|
|
tracker { id name isLoggedIn isTokenExpired authUrl }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const CONNECT_KOSYNC = `
|
|
mutation ConnectKoSync($username: String!, $password: String!, $serverAddress: String!) {
|
|
connectKoSyncAccount(input: { username: $username, password: $password, serverAddress: $serverAddress }) {
|
|
isConnected
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const LOGOUT_KOSYNC = `
|
|
mutation LogoutKoSync {
|
|
logoutKoSyncAccount(input: {}) {
|
|
isConnected
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const PULL_KOSYNC_PROGRESS = `
|
|
mutation PullKoSyncProgress($chapterId: Int!) {
|
|
pullKoSyncProgress(input: { chapterId: $chapterId }) {
|
|
chapter { id lastPageRead isRead }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const PUSH_KOSYNC_PROGRESS = `
|
|
mutation PushKoSyncProgress($chapterId: Int!) {
|
|
pushKoSyncProgress(input: { chapterId: $chapterId }) {
|
|
chapter { id lastPageRead isRead }
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const LOGIN_USER = `
|
|
mutation Login($username: String!, $password: String!, $clientMutationId: String) {
|
|
login(input: { username: $username, password: $password, clientMutationId: $clientMutationId }) {
|
|
accessToken
|
|
refreshToken
|
|
clientMutationId
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const REFRESH_TOKEN = `
|
|
mutation RefreshToken($refreshToken: String!, $clientMutationId: String) {
|
|
refreshToken(input: { refreshToken: $refreshToken, clientMutationId: $clientMutationId }) {
|
|
accessToken
|
|
clientMutationId
|
|
}
|
|
}
|
|
`; |