All in GraphQL #34

Merged
timw4mail merged 87 commits from develop into master 2020-12-01 10:07:49 -05:00
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
}
}
}