Difference between revisions of "Q1.3"

From BITPlan cr Wiki
Jump to navigation Jump to search
Line 17: Line 17:
 
   ?author rdfs:label ?authorLabel. FILTER(lang(?authorLabel)="en")
 
   ?author rdfs:label ?authorLabel. FILTER(lang(?authorLabel)="en")
 
}
 
}
 +
|since=2015-08-25
 
|tryiturl=6JIyAd
 
|tryiturl=6JIyAd
 
|task=Task1
 
|task=Task1

Revision as of 12:57, 19 March 2023

Query

Query
edit
id  1.3
name  
title  All Authors of Workshop
description  List the full names of all authors who have (co-)authored a paper in workshop W .
sparql  
SELECT DISTINCT ?proceedings ?author ?authorLabel
WHERE{
  VALUES ?volume_number {"3262"}
  ?proceedings wdt:P31 wd:Q1143604;
               wdt:P179 wd:Q27230297;
               p:P179/pq:P478 ?volume_number.
  
  ?paper wdt:P31 wd:Q13442814;
         wdt:P1433 ?proceedings;
         wdt:P50|wdt:P2093 ?author.
  ?author rdfs:label ?authorLabel. FILTER(lang(?authorLabel)="en")
}
tryiturl  6JIyAd→6JIyAd
wdqsurl  →6UAf
scholia  →
relevance  
comment  
task  Task1→Task1

Freitext