Difference between revisions of "Q1.1"

From BITPlan cr Wiki
Jump to navigation Jump to search
(Created page with "{{Query |id=Q1.1 |title=All Editors of Workshop |description=List the full names of all editors of the proceedings of workshop W . }}")
 
Line 1: Line 1:
 +
=Query=
 +
 
{{Query
 
{{Query
 
|id=Q1.1
 
|id=Q1.1
 
|title=All Editors of Workshop
 
|title=All Editors of Workshop
 
|description=List the full names of all editors of the proceedings of workshop W .
 
|description=List the full names of all editors of the proceedings of workshop W .
 +
|sparql=SELECT ?proceedings ?editor ?editorLabel ?affiliation ?affiliationLabel
 +
WHERE{
 +
  VALUES ?volume_number {"3262"}
 +
  ?proceedings wdt:P31 wd:Q1143604;
 +
              wdt:P179 wd:Q27230297;
 +
              p:P179/pq:P478 ?volume_number;
 +
              p:P98 [
 +
                ps:P98 ?editor;
 +
                pq:P1416 ?affiliation
 +
              ].
 +
 
 +
  ?editor rdfs:label ?editorLabel. FILTER(lang(?editorLabel)="en")
 +
  ?affiliation rdfs:label ?affiliationLabel. FILTER(lang(?affiliationLabel)="en")         
 +
}
 
}}
 
}}
 +
=Freitext=

Revision as of 09:48, 19 March 2023

Query

"Q" can not be assigned to a declared number type with value 1.1.

Query
id  Q1.1
name  
title  All Editors of Workshop
description  List the full names of all editors of the proceedings of workshop W .
sparql  
SELECT ?proceedings ?editor ?editorLabel ?affiliation ?affiliationLabel
WHERE{
  VALUES ?volume_number {"3262"}
  ?proceedings wdt:P31 wd:Q1143604;
               wdt:P179 wd:Q27230297;
               p:P179/pq:P478 ?volume_number;
               p:P98 [
                 ps:P98 ?editor;
                 pq:P1416 ?affiliation
               ].
  
  ?editor rdfs:label ?editorLabel. FILTER(lang(?editorLabel)="en")
  ?affiliation rdfs:label ?affiliationLabel. FILTER(lang(?affiliationLabel)="en")           
}
tryiturl  →JGBD4b
wdqsurl  →6UAa
scholia  →
relevance  
comment  
task  →Task1

Freitext