query-09964d58031d0c7f02e50f0717f8969f
All contributions to alba amicorum in data.bibliotheken.nl (3721 rows)
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX schema: <http://schema.org/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT DISTINCT ?album ?album_name ?bijdrage ?bijdrage_name ?auteur (GROUP_CONCAT(DISTINCT ?desc;SEPARATOR = " ") as ?bijdrage_beschrijving) ?maakdatum ?maaklocatie ?afbeelding ?bijdrage_nummer WHERE {
SERVICE <http://data.bibliotheken.nl/sparql>{
?album schema:name ?album_name .
?bijdrage schema:isPartOf ?album .
?bijdrage schema:description ?desc .
?bijdrage schema:name ?bijdrage_name .
?bijdrage schema:author ?auteur.
?bijdrage schema:dateCreated ?maakdatum.
?bijdrage schema:locationCreated ?maaklocatie.
?bijdrage schema:image [ schema:contentUrl ?afbeelding] .
?bijdrage schema:position ?bijdrage_nummer .
#FILTER Contains(?album_name,"*")
}
}
GROUP BY ?album ?bijdrage ?afbeelding ?auteur ?maakdatum ?maaklocatie ?album_name ?bijdrage_name ?bijdrage_nummer
ORDER BY ?album_name xsd:integer(?bijdrage_nummer)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v10("?afbeelding"):::projected
v3("?album"):::projected
v1("?album_name"):::projected
v7("?auteur"):::projected
v4("?bijdrage"):::projected
v11("?bijdrage_beschrijving")
v6("?bijdrage_name"):::projected
v2("?bijdrage_nummer"):::projected
v5("?desc"):::projected
v8("?maakdatum"):::projected
v9("?maaklocatie"):::projected
a1((" "))
subgraph s1["http://data.bibliotheken.nl/sparql"]
style s1 stroke-width:4px;
v3 --"schema:name"--> v1
v4 --"schema:isPartOf"--> v3
v4 --"schema:description"--> v5
v4 --"schema:name"--> v6
v4 --"schema:author"--> v7
v4 --"schema:dateCreated"--> v8
v4 --"schema:locationCreated"--> v9
a1 --"schema:contentUrl"--> v10
v4 --"schema:image"--> a1
v4 --"schema:position"--> v2
end
bind1[/"?desc"/]
v5 --o bind1
bind1 --as--o v11