suspend fun searchManga(query: String, additionalQuery: MangaSearchQuery? = null, page: Int? = 1): MangaSearchResult
Search results for the query. NOTE: MyAnimeList only processes queries with a minimum of 3 letters.
query
- : String that will be the query. For UTF8 characters, percentage encoded and queries including back slashes
page
- : Optional, default is 1. Index of page.
additionalQuery
- : Optional, additional query.
Return
list of anime that satisfy all the queries.
suspend fun searchManga(additionalQuery: MangaSearchQuery? = null, page: Int? = 1): MangaSearchResult
Search results for the query.
page
- : Optional, default is 1. Index of page.
additionalQuery
- : Optional, additional query.
Return
list of anime that satisfy all the queries.