So, I have a GraphQL request where I am pulling every film from every studio in my api. I’m wondering if I can pull a filtered list of only films that have a specific cast or crew member with GraphQL, or if I’d have to do this with server code:
allStudios {
films{
title
logline
characters{
characterName
characterDescription
}
crew{
role
member{
id
firstName
lastName
}
}
videoFile{
video{
thumbnailUrl
mp4Url
}
}
studio{
id
}
}
ex: I would only pull a film from the api if it had Ryan Reynolds as a cast or crew member.