@@ -46,7 +46,7 @@ function getFilename(path) {
46
46
47
47
const queryNodes = `
48
48
SELECT
49
- tags.tag as tags,
49
+ GROUP_CONCAT( tags.tag) AS tags,
50
50
nodes.properties,
51
51
nodes.olp,
52
52
nodes.pos,
75
75
76
76
const queryTags = `
77
77
SELECT
78
- *
78
+ tags.tag
79
79
FROM
80
80
tags
81
+ GROUP BY
82
+ tags.tag
81
83
` ;
82
84
83
85
const graphdata = {
@@ -87,14 +89,17 @@ const graphdata = {
87
89
db . all ( queryNodes , ( _ , nodes ) =>
88
90
db . all ( queryLinks , ( _ , links ) =>
89
91
db . all ( queryTags , ( _ , tags ) => {
90
- graphdata . data . nodes = nodes . map ( node => ( {
91
- ...node ,
92
- tags : node . tags ?? [ null ] ,
93
- file : getFilename ( node . file ) ,
94
- properties : parseProperties ( node . properties ) ,
95
- } ) ) ;
92
+ graphdata . data . nodes = nodes . map ( node => {
93
+ const splitTags = node . tags ?. split ( ',' ) ?? [ null ] ;
94
+ return {
95
+ ...node ,
96
+ tags : splitTags ,
97
+ file : getFilename ( node . file ) ,
98
+ properties : parseProperties ( node . properties ) ,
99
+ } ;
100
+ } ) ;
96
101
graphdata . data . links = links ;
97
- graphdata . data . tags = tags . length ? tags : null ;
102
+ graphdata . data . tags = tags . length ? tags . map ( t => t . tag ) : null ;
98
103
99
104
fs . writeFile ( 'graphdata.json' , JSON . stringify ( removeQuotesFromObject ( graphdata ) ) , ( err ) => {
100
105
if ( err ) throw err ;
0 commit comments