We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c451e29 commit c8f4575Copy full SHA for c8f4575
README.md
@@ -50,11 +50,13 @@ Import the `template` tag function from `/app/template.js` in your `export.js` a
50
An example `export.js` file may look as follows:
51
52
```javascript
53
+import template from '/app/template.js';
54
+
55
export default [
56
{
57
path: '/example',
58
format: 'text/csv',
- query: `SELECT * FROM <http://mu.semte.ch/application> WHERE { ?s a ${'class'} } LIMIT 100`,
59
+ query: template`SELECT * FROM <http://mu.semte.ch/application> WHERE { ?s a ${'class'} } LIMIT 100`,
60
file: 'export-example.csv'
61
},
62
...
0 commit comments