0.9
Table filtering has a new, better design. #25
Retrieving all records with license
of "apache-2.0"
and a stargazers_count
greater than 10 now looks like this:
{
repos(filter: {license: {eq: "apache-2.0"}, stargazers_count: {gt: 10}}) {
nodes {
full_name
stargazers_count
license {
key
}
}
}
}
See table filters examples for more operations, and column filter arguments in the Datasette documentation for details of how those operations work.