View difference between Paste ID: e7ri4LNv and PXZAjTJh
SHOW: | | - or go back to the newest paste.
1
PREFIX ocd: <http://dati.camera.it/ocd/>
2
PREFIX osr: <http://dati.senato.it/osr/>
3
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
4
5-
SELECT DISTINCT ?nome ?cognome ?carica ?gruppo ?dizioneGruppo ?inizioAdesione ?fineAdesione
5+
SELECT DISTINCT ?carica ?gruppo ?nomeGruppo
6-
WHERE
6+
WHERE 
7
{
8-
    <http://dati.senato.it/senatore/12836> a osr:Senatore.
8+
    <http://dati.senato.it/senatore/1919> ocd:aderisce ?adesioneGruppo.
9-
    <http://dati.senato.it/senatore/12836> foaf:firstName ?nome.
9+
    ?adesioneGruppo osr:carica ?carica.
10-
    <http://dati.senato.it/senatore/12836> foaf:lastName ?cognome.
10+
    ?adesioneGruppo osr:gruppo ?gruppo.
11-
    <http://dati.senato.it/senatore/12836> ocd:aderisce ?adesione.
11+
    ?gruppo osr:denominazione ?denominazione.
12-
    ?adesione osr:carica ?carica.
12+
    OPTIONAL { ?denominazione osr:fine ?fineDenominazione. }
13-
    ?adesione osr:gruppo ?gruppo.
13+
    FILTER(!bound(?fineDenominazione)).
14-
    ?adesione osr:inizio ?inizioAdesione.
14+
    ?denominazione osr:titolo ?nomeGruppo.
15-
    OPTIONAL { ?adesione osr:fine ?fineAdesione }
15+
}