graphQL queries cannot filter on a Single Select field?

In a graphQL query, I want to filter entities by a Single Select field, but the syntax apparently will not allow this.

Hi,

it works as for any Reference / Collection field. For some reason it just doesn’t appear in the docs but shows up in hints when you typing it.


{
  findProductLaunches(orderBy: {rank: ASC}, priority: {name: {is: "High"}}) {
    name,
  }
}

2 Likes