rdf-ext / rdf-parser-csvw

CSV on the Web parser
MIT License
16 stars 4 forks source link

Support suppressOutput #2

Closed ktk closed 6 years ago

ktk commented 6 years ago

Given the following colum:

      {
        "titles": "Geodaten",
        "suppressOutput": true
      }

by specifying suppressOutput: true the column should be ignored and no triples should be generated. Currently it creates a triple with <undefined> as predicate.

bergos commented 6 years ago

Added with this commit.

ktk commented 6 years ago

works fine tnx