query-089579ee73a3d31f4dddc0faac039f79
krewni i powinowaci SELECT DISTINCT ?kind ?kindLabel WHERE { ?any pq:P1039 ?kind .
SERVICE wikibase:label { bd:serviceParam wikibase:language "pl,en" . } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# krewni i powinowaci
SELECT DISTINCT ?kind ?kindLabel WHERE {
?any pq:P1039 ?kind .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "pl,en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?any")
v2("?kind"):::projected
c3(["bd:serviceParam"]):::iri
c5(["pl,en"]):::literal
v1 --"pq:P1039"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end