Dataview: Commenting in DQL

Commenting is not fully implemented

I can’t do that.

TABLE WITHOUT ID 
    map(this.children, (x) => x) AS tmp, // error comment
    map(this.file.inlinks, (x) => x) AS tmp2
WHERE file.name = this.file.name

And I can’t do it like this

TABLE WITHOUT ID 
    // error comment
    map(this.children, (x) => x) AS tmp,
    map(this.file.inlinks, (x) => x) AS tmp2
WHERE file.name = this.file.name

And that

TABLE WITHOUT ID 
    map( // error comment
        this.children, (x) => x) AS tmp, 
    map(this.file.inlinks, (x) => x) AS tmp2
WHERE file.name = this.file.name

Please complete the functionality

We don’t make dataview. You need to post this in the dataview repository on github.