Questions tagged [linkedmdb]

The Linked Movie Database (LinkedMDB) is a database of movie-related information exposed in RDF which can be queried using SPARQL.

LinkedMDB, the Linked Movie Database, is a database of movie-related information exposed in RDF which can be queried using SPARQL. Resources in LinkedMDB are interlinked with resources defined in other datasets, such as YAGO, DBpedia, flickr™ and the RDF Book Mashup. LinkedMDB won first prize at the LOD Triplification Challenge.

What questions should have this tag?

Questions about using the LinkedMDB dataset, either remotely or locally, should use this tag, as well as questions about accessing LinkedMDB and using the LinkedMDB vocabulary, should use this tag.

For more information

For more information:

29 questions
8
votes
2 answers

How to find similar content using SPARQL

I'm playing with the idea of using SPARQL to identify conceptual overlap between things. Take movies for example (LinkedMDB data), if I have a movie, "The Matrix" and my goal is to list movies that are similar to that movie, I would probably start…
Kristian
  • 21,204
  • 19
  • 101
  • 176
5
votes
1 answer

Filtering based on a URI in SParQL

You can run the query below at the Linked MDB SPARQL Explorer. The values of ?imdbID (the last variable) contains IRIs from one of three possible domains (freebase.com, rottentomatoes.com or imdb.com). I would like to know how to apply a filter such…
Ihe Onwuka
  • 467
  • 1
  • 3
  • 11
4
votes
1 answer

Can't retrieve movies with high IDs from LinkedMDB with SPARQL

I'm running the following query at the LinkedMDB SPARQL endpoint and it works. With it, I get all the information that I need about the director of the movie with id 72, which is Titanic, so I get information about James Cameron. PREFIX mdb:…
chomp
  • 1,352
  • 13
  • 31
4
votes
1 answer

SPARQL regular expression not match

I want to get all the movies without "The Lord of the rings" string in the title. I tried this at the Linked Movie Database SPARQL endpoint, but it doesn't work. What is wrong? PREFIX m: SELECT DISTINCT * …
Ortzi
  • 363
  • 1
  • 6
  • 17
3
votes
1 answer

How to resolve the execution limits in Linkedmdb

I was trying to extract all movies from Linkedmdb. I used OFFSET to make sure I wont hit the maximum number of results per query. I used the following scrip in python """ PREFIX rdfs: PREFIX movie:…
user1848018
  • 1,086
  • 1
  • 14
  • 33
3
votes
1 answer

Counting number of individuals in SPARQL

I am totally new to SPARQL. I would like to count the number of actors in this ontology : http://data.linkedmdb.org/directory/actor I tried the following: SELECT ?s (COUNT(*) AS ?count) WHERE { ?a…
Suvimo
  • 240
  • 1
  • 6
  • 18
2
votes
0 answers

Limit 2500 on Linked Movie Database

Right now I'm developing an App for querying the LMDB. LMDB has set a LIMIT for the results in order to prevent page crash (max 2500 results). I want to query the WHOLE LMDB and I was wondering if there's some way to get the whole data that is in…
John Doe
  • 83
  • 9
2
votes
1 answer

LinkedMDB SPARQL Query

I'm a bit confused here. I have the following SPARQL query that works brilliantly against the LinkedMDB explorer. PREFIX mdb: PREFIX rdfs: PREFIX dc:…
1
vote
3 answers

How to use Jena TDB to store local version of Linked Movie Database

I have a local version of LinkedMDB that is in N-Triples format and want to query it. Now, I want to use Jena TDB, which can store the data that can be used for querying later. I checked the documentation for TDB Java API, but was unable to load…
ProgramME
  • 653
  • 3
  • 12
  • 23
1
vote
2 answers

Unable to query local version of Linked Movie Database

I am trying to query a local version of Linked Movie Database using SPARQL. The file is in N-Triples format and its size is approximately 450mb. I am using servlets for implementation. Now when I pass the query, it takes about more than five…
ProgramME
  • 653
  • 3
  • 12
  • 23
1
vote
2 answers

local version of Linked Movie Database at linkedmdb.org

i want to query from Linked Movie Database at linkedmdb.org locally. is there some rdf or owl version of it that can i download query locally instead of remotely I tried to query it and got the following error: org.openjena.riot.RiotException:…
ProgramME
  • 653
  • 3
  • 12
  • 23
1
vote
0 answers

SPARQL Query to get Movie detail

To get movie detail from linkedmdb, I used sparql query : PREFIX mdb: SELECT DISTINCT ?Title ?Genre ?Actor ?Country ?Director ?Year WHERE { ?film mdb:id ?uri . ?film dc:title ?Title . ?film…
1
vote
1 answer

How to Sparql queries

some help please. so far I know how to use Jena with ARQ (command line), load an xml file write the query to a query.rq file and run queries with the following command:
user3358377
  • 145
  • 3
  • 16
1
vote
1 answer

Get movies actor acted in? Linkedmdb

I am currently trying to get movies (I want their URI) that an actor acted in. When I explore linkedmdb I see "is" actor "of", but I can not use it in my SPARQL query. Is it some special namespace or something? Or is it in an OWL ontology? The query…
miniHessel
  • 778
  • 4
  • 15
  • 39
1
vote
1 answer

SPARQL query against linkedmdb returning only null values

I am trying to experiment with Jena using Java code. In this application, I only get 20 null values. public class Movie_database { public static void main(String args[]) { Model model = ModelFactory.createDefaultModel(); String…
miniHessel
  • 778
  • 4
  • 15
  • 39
1
2