Hello all again,

I was wondering if anyone knew why a straightforward sparql query on my wikibase-cloud project should somehow miss a result it should normally find:

"
PREFIX pr: <https://framenet-akkadian.wikibase.cloud/prop/direct/>
PREFIX it: <https://framenet-akkadian.wikibase.cloud/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT
  ?qItem ?documentLabel ?idDocumentString
WHERE {
    ?qItem pr:P3 it:Q52 . #P3 = instance of, Q52 = Document
    ?qItem rdfs:label ?documentLabel .  
    ?qItem pr:P24 ?idDocumentString . #P24 = has idDocument (DataType String)
   
}
"
The problem is that the search results (https://tinyurl.com/2dqmn6xe) miss a Qitem (https://framenet-akkadian.wikibase.cloud/wiki/Item:Q2483) that should be listed with idDocumentString = '32'. But the page for the Qitem shows it has a statement of providing this value. The query seems to get most or all other Qitems that have an idDocument field.