home / content / releases

releases: 29479146

This data as json

html_url id author node_id tag_name target_commitish name draft prerelease created_at published_at body repo reactions mentions_count
https://github.com/simonw/datasette-graphql/releases/tag/0.10 29479146 9599 MDc6UmVsZWFzZTI5NDc5MTQ2 0.10 main 0.10 0 0 2020-08-08T19:44:10Z 2020-08-08T19:50:17Z - 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 } } } } } ``` 284383265    

Links from other tables

  • 0 rows from release in assets
Powered by Datasette · Queries took 2.023ms