I am using Keystone 6, which ships with the latest version of Apollo. Normally, with GraphQL, we could insert a simple where clause with the following statement:
query {
posts ( where: { title: "test" } ) {
title
}
}
However, upon trying this with Apollo Studio, I get the following error:
Expected value of type "StringFilter", found "test".
I have tried various ways to fix this but nothing seems to work. Can any of you help out?
Thank you.