<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
   xmlns:dcterms="http://purl.org/dc/terms/"
   xmlns:foaf="http://xmlns.com/foaf/0.1/"
   xmlns:hydra="http://www.w3.org/ns/hydra/core#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
   xmlns:sage="http://sage.univ-nantes.fr/sage-voc#"
   xmlns:sd="http://www.w3.org/ns/sparql-service-description#"
   xmlns:void="http://rdfs.org/ns/void#"
>
  <rdf:Description rdf:about="http://soyez-sage.univ-nantes.fr">
    <sage:hasExampleQuery rdf:nodeID="Ndef88302d21846c7bd86eb659541ecb7"/>
    <hydra:itemsPerPage rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2000</hydra:itemsPerPage>
    <dcterms:title>wikidata-2017-03-13</dcterms:title>
    <void:distinctSubjects rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">259173648</void:distinctSubjects>
    <void:triples rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2262175283</void:triples>
    <sage:hasExampleQuery rdf:nodeID="Ncd50ad587c0f4ee2a7174c5cc79e9d09"/>
    <sage:hasExampleQuery rdf:nodeID="Nb47e824036324ae7ae61055a39504e8e"/>
    <sd:endpoint rdf:resource="http://soyez-sage.univ-nantes.fr"/>
    <void:distinctObjects rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">408574673</void:distinctObjects>
    <sage:hasExampleQuery rdf:nodeID="N9ff9160a0cc44530a7e55211db3f156e"/>
    <void:feature rdf:resource="http://www.w3.org/ns/formats/SPARQL_Results_XML"/>
    <void:feature rdf:resource="http://www.w3.org/ns/formats/SPARQL_Results_JSON"/>
    <hydra:entrypoint rdf:resource="http://soyez-sage.univ-nantes.fr"/>
    <foaf:homepage rdf:resource="http://soyez-sage.univ-nantes.fr"/>
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#SageDataset"/>
    <sage:hasExampleQuery rdf:nodeID="N05de6ab869ae4ba8aed9e4548c76cb98"/>
    <void:properties rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">14283</void:properties>
    <sage:quota rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">75</sage:quota>
    <dcterms:description>Wikidata 2017-03-13 release</dcterms:description>
  </rdf:Description>
  <rdf:Description rdf:nodeID="N05de6ab869ae4ba8aed9e4548c76cb98">
    <rdf:value>prefix wd: &lt;http://www.wikidata.org/entity/&gt;
prefix wdt: &lt;http://www.wikidata.org/prop/direct/&gt;
prefix wdno: &lt;http://www.wikidata.org/prop/novalue/&gt;
prefix rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;
prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;

SELECT ?person ?personLabel ?relative ?relativeLabel
WHERE
{
  ?person wdt:P40 ?relative ; # Find an entity with a relative
          wdt:P31 wd:Q5 ; # This entity must be an human
          rdfs:label ?personLabel .
  ?relative wdt:P21 wd:Q6581097; # The relative must be a male
            wdt:P31 wd:Q5 ; # This relative must be an human
            rdfs:label ?relativeLabel .
  FILTER(LANGMATCHES(LANG(?personLabel), "EN") &amp;&amp; LANGMATCHES(LANG(?relativeLabel), "EN"))
}
LIMIT 10
</rdf:value>
    <rdfs:label>Parents and their sons in Wikidata</rdfs:label>
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#ExampleQuery"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="N9ff9160a0cc44530a7e55211db3f156e">
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#ExampleQuery"/>
    <rdfs:label>Descendant of Johann Sebastian Bach (Property Path)</rdfs:label>
    <rdf:value>prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;
prefix wdt: &lt;http://www.wikidata.org/prop/direct/&gt;
prefix wd: &lt;http://www.wikidata.org/entity/&gt;

SELECT * WHERE {
    wd:Q1339 wdt:P40+ ?descendant.
    ?descendant rdfs:label ?name.
}
</rdf:value>
  </rdf:Description>
  <rdf:Description rdf:nodeID="Ncd50ad587c0f4ee2a7174c5cc79e9d09">
    <rdfs:label>Siblings of Johan Sebastian Bach (Property Path)</rdfs:label>
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#ExampleQuery"/>
    <rdf:value>prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;
prefix wdt: &lt;http://www.wikidata.org/prop/direct/&gt;
prefix wd: &lt;http://www.wikidata.org/entity/&gt;

SELECT * WHERE {
    wd:Q1339 wdt:P22/^wdt:P22 ?sibling.
    ?sibling rdfs:label ?name.
}
</rdf:value>
  </rdf:Description>
  <rdf:Description rdf:nodeID="Ndef88302d21846c7bd86eb659541ecb7">
    <rdfs:label>Cats of Wikidata</rdfs:label>
    <rdf:value>prefix wd: &lt;http://www.wikidata.org/entity/&gt;
prefix wdt: &lt;http://www.wikidata.org/prop/direct/&gt;
prefix schema: &lt;http://schema.org/&gt;
prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;

SELECT ?cat ?label ?description
WHERE
{
  ?cat wdt:P31 wd:Q146; # Find Cats
  	   rdfs:label ?label;
  	   schema:description ?description.
  FILTER(LANGMATCHES(LANG(?label), LANG(?description)))
}
</rdf:value>
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#ExampleQuery"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="Nb47e824036324ae7ae61055a39504e8e">
    <rdfs:label>Madonna described by Wikidata</rdfs:label>
    <rdf:value>prefix wd: &lt;http://www.wikidata.org/entity/&gt;
prefix schema: &lt;http://schema.org/&gt;
prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;

SELECT ?label ?description
WHERE
{
  wd:Q1744 rdfs:label ?label;
    	schema:description ?description.
  FILTER(LANGMATCHES(LANG(?label), LANG(?description)))
}
</rdf:value>
    <rdf:type rdf:resource="http://sage.univ-nantes.fr/sage-voc#ExampleQuery"/>
  </rdf:Description>
</rdf:RDF>
