Project:Cradle: Difference between revisions

From d'Aïeux et d'Ailleurs
Jump to navigation Jump to search
(Created page with "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX wd: <http://www.wikidata.org/entity/> PREFIX wdt: <http://www.wikidata.org/prop/direct/> start = @<human> <human> EXTRA wdt:P31 { wdt:P1 [wd:Q5]; wdt:P2 # gender wdt:P6 . ?; # place of birth wdt:P8 . ?; # place of death wdt:P5 . ? ; # date of birth wdt:P7 . ? ;...")
 
No edit summary
Line 1: Line 1:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
start = @<human>
start = @<human>



Revision as of 12:38, 16 September 2022

start = @<human>

<human> EXTRA wdt:P31 {

 wdt:P1 [wd:Q5];
  wdt:P2   # gender
 wdt:P6 . ?;                      # place of birth
 wdt:P8 . ?;                      # place of death
 wdt:P5 . ? ;                    # date of birth
 wdt:P7 . ? ;                   # date of death
 wdt:P3 . * ;                    # given name
 wdt:P4 . * ;                    # family name
 wdt:P9 . * ;                    # occupation
   wdt:P10 @<human> *;             # father
 wdt:P11 @<human> *;             # mother
 wdt:P13 @<human> *;           # sibling
 wdt:P26 @<human> *;             # spouse
 wdt:P12 @<human> *;             # children
  rdfs:label rdf:langString+;

}