ー PupSoZeyDe ー
ー PupSoZeyDe ー

Reputation: 1392

DBpedia shows no result when it has parentheses

DBpedia shows no result when it has parentheses, like this example.

PREFIX dbpedia0: <http://dbpedia.org/ontology/>
PREFIX term: <http://purl.org/dc/terms/>

SELECT DISTINCT ?item
WHERE
{
?item rdfs:seeAlso <http://dbpedia.org/resource/Blockchain_(database)> .
}

I confirmed some wiki pages links to "Blockchain_(database)" in their see also section, so it should return some result. But actually it results no result.

I googled and I also tried:

?item rdfs:seeAlso dbr:Blockchain_%28database%29 .

But didn't work. Can't DBpedia searches parentheses-containing resources?

Upvotes: 0

Views: 79

Answers (1)

ー PupSoZeyDe ー
ー PupSoZeyDe ー

Reputation: 1392

I found that the result might be different depends on the DBpedia endpoint.

And you can see the difference manually between the live one and traditional one, if they are indexed on the web server (not only database server).

  • live.dbpedia.org/resource/Bitcoin
  • dbpedia.org/resource/Bitcoin

Upvotes: 1

Related Questions