-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add biography texts for BNet person entities
- Loading branch information
Showing
5 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
PREFIX idmcore: <http://www.intavia.eu/idm-core/> | ||
PREFIX bgn: <http://data.biographynet.nl/rdf/> | ||
|
||
SELECT ?bioText ?bioAbstract ?bioID | ||
SELECT ?bioText ?bioAbstract ?biotext ?bioID | ||
|
||
{% include 'add_datasets_v2_1.sparql' %} | ||
|
||
WHERE { | ||
BIND(<{{bioID}}> AS ?bioID) | ||
?bioID idmcore:full_bio_link ?bioText . | ||
OPTIONAL {?bioID idmcore:short_bio_link ?bioAbstract .} | ||
|
||
{ ?bioID idmcore:full_bio_link ?bioText . | ||
OPTIONAL {?bioID idmcore:short_bio_link ?bioAbstract . } } | ||
UNION | ||
{ ?bioID bgn:hasBioParts ?bioparts . | ||
?bioparts bgn:text ?biotext . | ||
FILTER NOT EXISTS { ?bioparts bgn:hasFigure ?fig . } } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters