Skip to content

Commit

Permalink
allow import of CSV files
Browse files Browse the repository at this point in the history
  • Loading branch information
ali1k committed Jan 9, 2019
1 parent 750ac29 commit 6534537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/sparql/ImportQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class ImportQuery{
let propsSt = '';
for(let prop in node){
if(prop !== '@type' && prop !=='@id'){
propsSt = propsSt + `${validUrl.is_web_uri(prop) ? '<'+prop+'>': prop} ${validUrl.is_web_uri(node[prop]) ? '<'+node[prop]+'>': '"""'+node[prop]+'"""'} ; `;
propsSt = propsSt + `${validUrl.is_web_uri(prop) ? '<'+prop+'>': prop} ${validUrl.is_web_uri(node[prop]) ? '<'+node[prop]+'>': '"""'+node[prop]+'"""'} ; `;
}
}
this.query = this.query + `
Expand Down

0 comments on commit 6534537

Please sign in to comment.