fixed query subject in generator

This commit is contained in:
Tim Worrall 2014-06-09 14:34:11 -04:00
parent 9ef66e8764
commit 15169ca894

View file

@ -937,7 +937,7 @@ public class AddPublicationToPersonGenerator extends VivoBaseGenerator implement
String query = "PREFIX core:<" + vivoCore + "> " +
"SELECT ?pubUri WHERE { " +
"<" + subject + "> core:relatedBy ?authorshipUri . " +
"?authorship a core:Authorship . " +
"?authorshipUri a core:Authorship . " +
"?authorshipUri core:relates ?pubUri . }";
return query;
}