- New `where:` argument that accepts a fragment of SQL to add to the WHERE clause, as an alternative for if the query is too complex to express using `filter:`. 26
- Nested relationships now support the `filter:`, `sort:`, `sort_desc:`, `search:` and `where:` arguments. 38
Example query using these new features ([try this query](https://datasette-graphql-demo.datasette.io/graphql?query=%7B%0A%20%20repos(filter%3A%20%5B%7Bstargazers_count%3A%20%7Bgt%3A%2010%7D%7D%5D)%20%7B%0A%20%20%20%20nodes%20%7B%0A%20%20%20%20%20%20full_name%0A%20%20%20%20%20%20stargazers_count%0A%20%20%20%20%20%20issues_list(first%3A%205%2C%20where%3A%20%22body%20like%20%27%25test%25%27%20or%20title%20like%20%27%25test%25%27%22%2C%20sort_desc%3A%20created_at)%20%7B%0A%20%20%20%20%20%20%20%20totalCount%0A%20%20%20%20%20%20%20%20nodes%20%7B%0A%20%20%20%20%20%20%20%20%20%20title%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D)):
graphql
{
repos(filter: [{stargazers_count: {gt: 10}}]) {
nodes {
full_name
stargazers_count
issues_list(first: 5, where: "body like '%test%' or title like '%test%'", sort_desc: created_at) {
totalCount
nodes {
title
}
}
}
}
}