Character appears in
This page shows how to get all Contents
in which the provided Character
appears in.
It also retrieves all [content-voice actor-localization]
tuples associated with the Character.
Sample
Replace [CHARACTER-NAME]
with a valid character resource name.
tip
Try with characters/3863146434608265184
.
tip
Visit https://animeshon.com/graphql to browse the GraphQL embedded documentation.
There is a single unified endpoint for Animeshon GraphQL queries and mutations: https://animeshon.com/graphql.
query {
getGraphGeneric(name: "[CHARACTER-NAME]") {
name
names {
text
localizationTag
}
... on GraphCharacter {
appearances {
relation
content {
... on GraphGeneric {
name
names {
text
localizationTag
}
}
}
}
voices {
localizationTag
isPrimary
actor {
name
}
content {
... on GraphGeneric {
name
}
}
}
}
}
}