{% for til in sql("select * from til where topic = :topic", {"topic": row.topic}) %}
<li><a href="{{ til.url }}">{{ til.title }}</a> - {{ til.created[:10] }}</li>
{% endfor %}
The equivalent for the graphql() function from #50 would be to support GraphQL variables.
https://github.com/simonw/datasette-template-sql supports named parameters:
The equivalent for the
graphql()
function from #50 would be to support GraphQL variables.