As a developer I want to be able query a manga from the graphql by its trackerID
Example: isntead of depending on query MyQuery {
query MyQuery {
manga(id: 449) {
title
}
}
I should be able to use the remoteID of the tracker:
query MyQuery {
manga( {
title
trackRecords {
nodes {
remoteId
}
}
}
}
Why/Project's Benefit/Existing Problem
It will be facilitate associating manga from different sources, it would easier the way migrating are implemented in other clients, allow other clients to implement consolidated local sources, using the tracker's Id developers can find if there is another manga with the same ID and they can use the same download location for local sources. This would also make it possible to have the same manga from multiple sources, without worrying about duplicated files.
What feature should be added to Suwayomi?
As a developer I want to be able query a manga from the graphql by its trackerID
Example: isntead of depending on query MyQuery { query MyQuery { manga(id: 449) { title } }
I should be able to use the remoteID of the tracker: query MyQuery { manga( {
title
trackRecords {
nodes {
remoteId
}
}
}
}
Why/Project's Benefit/Existing Problem
It will be facilitate associating manga from different sources, it would easier the way migrating are implemented in other clients, allow other clients to implement consolidated local sources, using the tracker's Id developers can find if there is another manga with the same ID and they can use the same download location for local sources. This would also make it possible to have the same manga from multiple sources, without worrying about duplicated files.