Skip to content

Commit e3c565b

Browse files
committed
Remove standard prefixes
Could find no uses of these prefixes in the wild so there is a very slim chance this is breaking. It may however break within new microservices because mu is not defined to be the commonly accepted value for the prefix. Better be explicit for now.
1 parent 709b000 commit e3c565b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

helpers/mu/sparql.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,7 @@ function newSparqlClient(userOptions) {
4444
console.log(`Headers set on SPARQL client: ${JSON.stringify(options)}`);
4545
}
4646

47-
return new SparqlClient(process.env.MU_SPARQL_ENDPOINT, options).register({
48-
mu: 'http://mu.semte.ch/vocabularies/',
49-
muCore: 'http://mu.semte.ch/vocabularies/core/',
50-
muExt: 'http://mu.semte.ch/vocabularies/ext/'
51-
});
47+
return new SparqlClient(process.env.MU_SPARQL_ENDPOINT, options);
5248
}
5349

5450
/**

0 commit comments

Comments
 (0)