mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
26 lines
590 B
GraphQL
26 lines
590 B
GraphQL
"Returns a listing of resources that match a given search term."
|
|
type Search {
|
|
"The anime results of the search"
|
|
anime: [Anime!]!
|
|
|
|
"The artist results of the search"
|
|
artists: [Artist!]!
|
|
|
|
"The theme results of the search"
|
|
animethemes: [AnimeTheme!]!
|
|
|
|
"The playlist results of the search"
|
|
playlists: [Playlist!]!
|
|
|
|
"The series results of the search"
|
|
series: [Series!]!
|
|
|
|
"The song results of the search"
|
|
songs: [Song!]!
|
|
|
|
"The studio results of the search"
|
|
studios: [Studio!]!
|
|
|
|
"The video results of the search"
|
|
videos: [Video!]!
|
|
} |