query-b719568e303c5ac975f340bfe677f1e2

rq turtle/ttl

Profession des invités dans Interdit d'interdire SELECT DISTINCT (COUNT (?occupation) as ?count) ?occupationLabel WHERE { ?episode (wdt:P31/(wdt:P279*)) wd:Q1983062; p:P179 ?statement; wdt:P5030 ?guest. ?statement ps:P179 wd:Q56816469; pq:P1545 ?numero_episode. ?guest wdt:P21 ?gender. ?guest wdt:P106 ?occupation. SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". ?guest rdfs:label ?guestLabel. ?gender rdfs:label ?genderLabel. ?occupation rdfs:label ?occupationLabel. } } GROUP BY ?occupationLabel ORDER BY DESC (?count)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Profession des invités dans Interdit d'interdire
SELECT DISTINCT (COUNT (?occupation) as ?count) ?occupationLabel
WHERE {
  ?episode (wdt:P31/(wdt:P279*)) wd:Q1983062;
    p:P179 ?statement;
    wdt:P5030 ?guest.
  ?statement ps:P179 wd:Q56816469;
    pq:P1545 ?numero_episode.
  ?guest wdt:P21 ?gender.
  ?guest wdt:P106 ?occupation.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "fr,en".
    ?guest rdfs:label ?guestLabel.
    ?gender rdfs:label ?genderLabel.
    ?occupation rdfs:label ?occupationLabel.
  }
}
GROUP BY ?occupationLabel
ORDER BY DESC (?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v11("?count") v2("?episode") v6("?gender") v9("?genderLabel") v4("?guest") v8("?guestLabel") v5("?numero_episode") v7("?occupation"):::projected v10("?occupationLabel"):::projected v3("?statement") a1((" ")) c7(["wd:Q56816469"]):::iri c3(["wd:Q1983062"]):::iri c12(["bd:serviceParam"]):::iri c14(["fr,en"]):::literal v2 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 v2 --"p:P179"--> v3 v2 --"p:direct/P5030"--> v4 v3 --"p:statement/P179"--> c7 v3 --"p:qualifier/P1545"--> v5 v4 --"p:direct/P21"--> v6 v4 --"p:direct/P106"--> v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 v4 --"rdfs:label"--> v8 v6 --"rdfs:label"--> v9 v7 --"rdfs:label"--> v10 end bind1[/"count(?occupation)"/] v7 --o bind1 bind1 --as--o v11