1

複数のオプション フィールドを持つことができる連合クエリを作成しようとしています。オプションのフィールドに対応するステートメントがない場合、結果はそのフィールドに空の値を持つ必要があります。通常のオプションの動作:) しかし、ウィキデータ クエリ サービスで以下のコードを実行すると、他の (オプションの) フィールドに対応するステートメントが存在する場合でも、結果セットは空になります。

オプションの?Pmemberofフィールド (サブジェクトに関するステートメントがない) を削除すると、すべてが正常に機能し、他のステートメントが返されます。ちなみに、これは元のクエリに期待する結果でもあります。

PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  wdt:  <http://www.wikidata.org/prop/direct/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?wd ?label ?description ?birthname ?placeofbirth ?placeofdeath (GROUP_CONCAT(DISTINCT ?occupation ; separator=', ') AS ?occupations) (GROUP_CONCAT(DISTINCT ?employer ; separator=', ') AS ?employers) (GROUP_CONCAT(DISTINCT ?memberof ; separator=', ') AS ?memberofs)
WHERE
  { SERVICE <http://dbpedia.org/sparql>
      { ?dbp  rdf:type      foaf:Person ;
              rdfs:label    ?l ;
              owl:sameAs    ?wd .
        ?l    bif:contains  "Niki AND Lauda"
        FILTER strstarts(xsd:string(?wd), "http://www.wikidata.org/entity/")
      }
    OPTIONAL
      { ?wd  <http://schema.org/description>  ?description ;
             wdt:P1477             ?Pbirthname ;
             wdt:P19               ?Pplaceofbirth ;
             wdt:P20               ?Pplaceofdeath ;
             wdt:P106              ?Poccupation ;
             wdt:P108              ?Pemployer ;
             wdt:P463              ?Pmemberof # remove this line -> everything works fine
      }
    FILTER ( lang(?description) = "en" )
    SERVICE wikibase:label
      { bd:serviceParam
                  wikibase:language  "[AUTO_LANGUAGE],en" .
        ?Pdescription
                  rdfs:label         ?description .
        ?Pbirthname  rdfs:label      ?birthname .
        ?Pplaceofbirth
                  rdfs:label         ?placeofbirth .
        ?Pplaceofdeath
                  rdfs:label         ?placeofdeath .
        ?Poccupation  rdfs:label     ?occupation .
        ?Pemployer  rdfs:label       ?employer .
        ?Pmemberof  rdfs:label       ?memberof .
        ?wd       rdfs:label         ?label
      }
  }
GROUP BY ?wd ?label ?description ?birthname ?placeofbirth ?placeofdeath
LIMIT   1000

私は何を間違っていますか??Pmemberofに対応するステートメントがない場合でも、他のすべてのステートメントを返したいと考えてい ます。

4

0 に答える 0