query-9265b88d95b9289804439010c1c80499

rq turtle/ttl

, and other content that is not part of the original template page.categoriesIt contains usage information, .Template:Articles in for subpage documentationThis is a to find if the item has some article in a specific wikipedia language edition instead. }}Articles in wikipedia{{This template is used to generate a partial SPARQL query to filters the results from the language links that are about an item (or a SPARQL variable). You may be looking for values to retain only the values for wich wikidata knows a sitelink in french. ?searcheditem inside a SPARQL expression will filter the |?searcheditem|fr}}Articles in{{For example the call ] purge · history · edit · view[ Template documentation to find if the item has some article in a specific wikipedia language edition instead. }}Articles in wikipedia{{This template is used to generate a partial SPARQL query to filters the results from the language links that are about an item (or a SPARQL variable). You may be looking for values to retain only the values for wich wikidata knows a sitelink in french. ?searcheditem inside a SPARQL expression will filter the |?searcheditem|fr}}Articles in{{For example the call can for example be used to generate a query for all humans with an article in french on wikimedia or another wiki :

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item WHERE {
  ?item wdt:P279*/wdt:P31 wd:Q5
     OPTIONAL { ?wartfritem schema:about ?item . ?wartfritem schema:inLanguage "fr" }
     FILTER(bound(?wartfritem))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?wartfritem") a1((" ")) c3(["wd:Q5"]):::iri c6(["fr"]):::literal f0[["bound(?wartfritem)"]] f0 --> v1 v2 --"wdt:P279"--> a1 a1 --"wdt:P31"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."schema:about".-> v2 v1 --"schema:inLanguage"--> c6 end