Actually fix the character API call, previous commit added authentication to GraphQL calls

This commit is contained in:
Timothy Warren 2020-07-30 10:02:44 -04:00
parent 3ab34a64d0
commit a3bae9255b
1 changed files with 3 additions and 3 deletions

View File

@ -189,9 +189,9 @@ final class Model {
'filter' => [
'slug' => $slug,
],
'fields' => [
'anime' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage',
'manga' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage'
'fields' => [ // For some characters, these filters cause issues...so leave them out
// 'anime' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage',
// 'manga' => 'canonicalTitle,abbreviatedTitles,titles,slug,posterImage'
],
'include' => 'castings.person,castings.media'
]