Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

Not getting the aggregated results I'm looking from Wikidata sparql query

I'm trying to get some data about Disneyland's hotels and I'm stuck here with architects. On of the hotels has two architects. As you can see I've tried to concatinate architects and group othe selected items. But I'm not getting their labels instead I'm getting their URI. What am I missing?

SELECT DISTINCT ?hotel ?hotelLabel ?openingDateLabel ?countryLabel 
 (group_concat(?architects;separator=", ") as ?architect)
    WHERE 
   {  
?hotel wdt:P31    wd:Q27686;    # vi leder efter noget, som er "instance of" et hotel
       wdt:P361   wd:Q206521;   # og som er "part of" Disneyland Paris         
       wdt:P1619  ?openingDate;         
       wdt:P495   ?country;
       wdt:P84    ?architects.

SERVICE wikibase:label { 
  bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
  ?hotel rdfs:label ?hotelLabel .
  ?openingDate rdfs:label ?openingDateLabel .
  ?country rdfs:label ?countryLabel .
  ?architect rdfs:label ?architectLabel .
                       }
}
Group by ?hotel ?hotelLabel ?openingDateLabel ?countryLabel

My results Look at architects..


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...