Skip to content

Commit

Permalink
UPDATE: Remove zitting? from the QUERY
Browse files Browse the repository at this point in the history
The removal of this extra distinct makes it so that duplicates are avoided in the results.
  • Loading branch information
razoreater committed Sep 12, 2024
1 parent ccf0ebe commit 5e3c460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webcomponents/besluiten-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class BesluitenLijst extends HTMLElement {
let offsetClause = `OFFSET ${this.offset}`;

this.selectQuery = this.getQuery(
'DISTINCT ?besluit ?title ?agendapunt ?zitting ?zitting_datum ?orgaan ?url ?status',
'DISTINCT ?besluit ?title ?agendapunt ?zitting_datum ?orgaan ?url ?status',
queryBestuursorgaan,
queryThema,
filterparams,
Expand Down
2 changes: 1 addition & 1 deletion webcomponents/reglementen-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ class ReglementenLijst extends HTMLElement {
PREFIX ext: <http://mu.semte.ch/vocabularies/ext/>
SELECT
DISTINCT ?besluit ?title ?publicatie_datum ?agendapunt ?zitting ?orgaan ?url ?status ?type
DISTINCT ?besluit ?title ?publicatie_datum ?agendapunt ?orgaan ?url ?status ?type
WHERE {
?besluit a besluit:Besluit ;
a ?type ;
Expand Down

0 comments on commit 5e3c460

Please sign in to comment.