query-f19c9ae3806cbe11a5177043b1a7d5e6
historical societies by country
SELECT DISTINCT ?item ?itemLabel ?official_website ?YouTube_channel_ID ?Twitter_username ?Facebook_ID ?online_catalog ?inception ?countryLabel WHERE { ?item wdt:P31 wd:Q5774403. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL { ?item wdt:P856 ?official_website. } OPTIONAL { ?item wdt:P2397 ?YouTube_channel_ID. } OPTIONAL { ?item wdt:P2002 ?Twitter_username. } OPTIONAL { ?item wdt:P2013 ?Facebook_ID. } OPTIONAL { ?item wdt:P8768 ?online_catalog. } OPTIONAL { ?item wdt:P571 ?inception. } OPTIONAL { ?item wdt:P17 ?country. } } ORDER BY (?countryLabel) LIMIT 5000
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# historical societies by country
SELECT DISTINCT ?item ?itemLabel ?official_website ?YouTube_channel_ID ?Twitter_username ?Facebook_ID ?online_catalog ?inception ?countryLabel WHERE {
?item wdt:P31 wd:Q5774403.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
OPTIONAL { ?item wdt:P856 ?official_website. }
OPTIONAL { ?item wdt:P2397 ?YouTube_channel_ID. }
OPTIONAL { ?item wdt:P2002 ?Twitter_username. }
OPTIONAL { ?item wdt:P2013 ?Facebook_ID. }
OPTIONAL { ?item wdt:P8768 ?online_catalog. }
OPTIONAL { ?item wdt:P571 ?inception. }
OPTIONAL { ?item wdt:P17 ?country. }
}
ORDER BY (?countryLabel)
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?Facebook_ID"):::projected
v5("?Twitter_username"):::projected
v4("?YouTube_channel_ID"):::projected
v9("?country")
v1("?countryLabel"):::projected
v8("?inception"):::projected
v2("?item"):::projected
v3("?official_website"):::projected
v7("?online_catalog"):::projected
c4(["bd:serviceParam"]):::iri
c2(["wd:Q5774403"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P856".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2397".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2002".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2013".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P8768".-> v7
end
subgraph optional5["(optional)"]
style optional5 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P571".-> v8
end
subgraph optional6["(optional)"]
style optional6 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P17".-> v9
end