File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,13 @@ export function buildBlazegraphJournal(context) {
3636 }
3737
3838 const catalog = resolve ( context . deploymentHome , 'catalog.ttl' ) ;
39- const catalogGraph = context . lodIri . replace ( / \/ $ / , '' ) ;
39+ const catalogGraph = context . purlIri . replace ( / \/ $ / , '' ) ;
4040 sparqlUpdate += `LOAD <file://${ catalog } > INTO GRAPH <${ catalogGraph } >;\n` ;
4141
42+ // Deprecated: The catalog should now be referred to as https://purl.humanatlas.io ie purlIri
43+ const catalogGraph2 = 'https://lod.humanatlas.io' ;
44+ sparqlUpdate += `LOAD <file://${ catalog } > INTO GRAPH <${ catalogGraph2 } >;\n` ;
45+
4246 const loadScript = resolve ( context . deploymentHome , 'blazegraph.load.rq' ) ;
4347 writeFileSync ( loadScript , sparqlUpdate ) ;
4448 update ( loadScript , journal ) ;
You can’t perform that action at this time.
0 commit comments