As Kaizen is built over GraphQL, it is advised to have a basic knowledge of how GraphQL client works with different frontend framewrks.
HowtoGraphQL is a great source to learn GraphQL.
After setting up the GraphQL Client, use the given address as the source url.
ADDRESS : https://apikaizen.herokuapp.com/api
Provide a list of anime matching with the keyword string.
query {
search(key : "Hunter x Hunter"){
name
id
}
}
Provide a list of anime which are currnty airing.
query {
airing {
name
id
image
rating
}
}
Provide a list of anime which are popular.
query {
popular {
name
id
image
rating
}
}
Provide a list of highest rated anime.
query {
rated {
name
id
image
rating
}
}