I'm using SlamData to create my report. I followed Slamdata's tutorial to populate a dropdownlist from database. I created a mark down with this query
committer = {!`SELECT DISTINCT idCategory FROM "/demo/ReportDB/TMCMSReportData" ORDER BY idCategory}
Can you show me why I got this error?
The correct query would be:
committer = {!`` SELECT DISTINCT idCategory FROM `/demo/ReportDB/TMCMSReportData` ORDER BY idCategory ``}
Note the use of back-ticks (not single quotes) to escape identifiers (the location in the file system) and the double back-ticks surrounding the Markdown snippet. These changes occurred recently when SlamData was updated to use the latest version of Quasar. It looks like not all documentation on the SlamData website has been updated yet.