ApiV2-GraphQL-Docs icon indicating copy to clipboard operation
ApiV2-GraphQL-Docs copied to clipboard

'mediaListEntry' inside media relations of 'MediaListCollection' returning none/null even when the media is present in authenticated user's media list

Open purpleblueslime opened this issue 3 years ago • 0 comments

mediaListEntry inside media relations of MediaListCollection returning none/null even when the media is present in authenticated user's media list

query {
  MediaListCollection(userName:"nomming", type:ANIME) {
    lists {
      entries {
        media {
          relations {
            edges {
              node {
                mediaListEntry {
                  id
                } 
              }
            }
          }
        }
      }
    }
  }
}

and yes im authenticated correctly, i made double sure query{Viewer{name}} (it gave me my username so theres nothing wrong there)

purpleblueslime avatar Feb 23 '22 13:02 purpleblueslime