Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 890 Bytes

File metadata and controls

30 lines (29 loc) · 890 Bytes
facetType: "multiselect",
getFacetValuesQuery: iri => { return `
  select ?_value (min(?label) as ?_valueLabel) {
    ?_r geo:sfWithin* ?_value .
    ?_value a <http://www.gemeentegeschiedenis.nl/provincie> ;
            rdfs:label ?label .
  }
  group by ?_value`;
},
"https://cultureelerfgoed.nl/vocab/Complex": {
  default: true,
  iri: "https://cultureelerfgoed.nl/vocab/Complex",
  label: "Complex",
  facets: [
  ],
  resourceDescriptionQuery: function(iri: string) {
    var projectPattern = `
      <${iri}> dct:hasPart ?monument .
      ?monument rdfs:label ?monumentLabel .`;
    var selectPattern = `
      ?monument dct:isPartOf <${iri}> ;
                rdfs:label ?monumentLabel .`;
    return `construct { ${projectPattern} } { ${selectPattern} }`;
  }
}