query-1de3fbf24a4b426fcd155a7417c45aba

rq turtle/ttl

Running a query using an external property equivalent to a wikidata property. Here things member of (P463) other things SELECT ?tout ?toutLabel ?membre ?membreLabel WHERE {?propwikibase wdt:P1628 http://rdaregistry.info/Elements/u/P60697. ?propwikibase wikibase:directClaim ?propwikibasedirectclaim. ?tout ?propwikibasedirectclaim ?membre. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". } } LIMIT 100

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Running a query using an external property equivalent to a wikidata property. Here things member of (P463) other things
SELECT ?tout ?toutLabel ?membre ?membreLabel 
WHERE 
{?propwikibase wdt:P1628 <http://rdaregistry.info/Elements/u/P60697>.
   ?propwikibase wikibase:directClaim ?propwikibasedirectclaim.
  ?tout ?propwikibasedirectclaim ?membre.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?membre"):::projected v1("?propwikibase") v2("?propwikibasedirectclaim") v3("?tout"):::projected c2([http://rdaregistry.info/Elements/u/P60697]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,fr"]):::literal v1 --"wdt:P1628"--> c2 v1 --"wikibase:directClaim"--> v2 v3 -->v2--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end