I am totally new to GraphQL. Looking at other examples in the support forums, I thought this filter would work. But I get an error "OData operation is not supported for query: ?$skip=0&$filter=data/name/iv/data/publication/iv eq ‘Spread Charts’."
{
queryPublicationContents
(filter:"data/name/iv/data/publication/iv eq 'Spread Charts'")
{
id
data {
name{iv {
data {
publication {
iv
}
}
}}
title {
iv
}
}
}
}