Skip to content

Commit

Permalink
feat(queries): update character sorting to FAVOURITES in get_anime an…
Browse files Browse the repository at this point in the history
…d get_manga queries

Updated the sorting criteria for characters from RELEVANCE to FAVOURITES in both get_anime.graphql and get_manga.graphql queries.
  • Loading branch information
AndrielFR committed Jan 23, 2025
1 parent 88bd76b commit 23aa9a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion queries/get_anime.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ query ($id: Int) {
isMainStudio
}
}
characters(sort: RELEVANCE) {
characters(sort: FAVOURITES) {
edges {
node {
id
Expand Down
2 changes: 1 addition & 1 deletion queries/get_manga.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ query ($id: Int) {
isMainStudio
}
}
characters(sort: RELEVANCE) {
characters(sort: FAVOURITES) {
edges {
node {
id
Expand Down

0 comments on commit 23aa9a8

Please sign in to comment.