Skip to content

0.9

Compare
Choose a tag to compare
@simonw simonw released this 08 Aug 00:35
· 129 commits to main since this release
83f290f

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.