Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 20 additions and 0 deletions
Showing only changes of commit 0868fb43bc - Show all commits

View File

@ -0,0 +1,20 @@
query (
$id: ID!,
$site: MappingExternalSiteEnum!,
) {
lookupMapping(externalSite: $site, externalId: $id) {
__typename,
...on Anime {
id
}
...on Manga {
id
}
...on Character {
id
}
...on Person {
id
}
}
}