Difference between revisions of "Q1.15"

From BITPlan cr Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
{{Query
 
{{Query
 
|id=15
 
|id=15
 +
|title=Editors of jointly published papers
 
|description=(editors of one workshop published jointly with others)List the full names of all editors of the proceedings of the workshop titled T (which was published in a joint volume V with other workshops)
 
|description=(editors of one workshop published jointly with others)List the full names of all editors of the proceedings of the workshop titled T (which was published in a joint volume V with other workshops)
 
|sparql=SELECT DISTINCT ?proceedings ?event ?editor ?editorLabel
 
|sparql=SELECT DISTINCT ?proceedings ?event ?editor ?editorLabel
Line 20: Line 21:
 
|tryiturl=TBhxb5
 
|tryiturl=TBhxb5
 
|since=2015-08-25
 
|since=2015-08-25
 +
|task=Task1
 
|storemode=property
 
|storemode=property
 
}}
 
}}
 
=Freitext=
 
=Freitext=

Revision as of 14:38, 19 March 2023

Query

Query
edit
id  15
name  
title  Editors of jointly published papers
description  (editors of one workshop published jointly with others)List the full names of all editors of the proceedings of the workshop titled T (which was published in a joint volume V with other workshops)
sparql  
SELECT DISTINCT ?proceedings ?event ?editor ?editorLabel
WHERE{
  VALUES ?event_title {"1st International Workshop on Knowledge Graph Generation From Text"@en}
  ?proceedings wdt:P31 wd:Q1143604;
               wdt:P179 wd:Q27230297;
               p:P179/pq:P478 ?volume_number;
               p:P4745 [
                            ps:P4745 ?event;
                            pq:P98 ?editor
               ].
  ?event wdt:P1476|rdfs:label ?event_title.
  
  ?editor rdfs:label ?editorLabel. FILTER(lang(?editorLabel)="en")
}
tryiturl  TBhxb5→TBhxb5
wdqsurl  →6UBB
scholia  →
relevance  
comment  
task  Task1→Task1

Freitext