SlideShare ist ein Scribd-Unternehmen logo
1 von 15
Querying with SPARQL
     Govinda et Lei
SPARQL on IMDB
IMDB

Object
LinkedMDB publishes linked open data using the
D2R Server. The project aims at publishing the
first open semantic web database for movies,
including a large number of interlinks to several
datasets on the open data cloud and references
to related webpages.
IMDB

Inerlink
IMDB

Accessing Data
Web browsers (see examples below)
  film: http://data.linkedmdb.org/page/film
  actor: http://data.linkedmdb.org/page/actor
Semantic Web browsers - entry point:
  http://data.linkedmdb.org/all
SPARQL clients - SPARQL endpoint:
  http://data.linkedmdb.org/sparql
Search film on HTML

Goto category: Film -> Disraeli
http://data.linkedmdb.org/page/film/100




Etc...
Query with SPARQL

Online Explorer: SPARQL Explorer
Query examples following...
Query with SPARQL

Select all director names
SELECT ?nameDirector WHERE {
?director movie:director_name ?nameDirector.
}ORDER BY ?nameDirector




                                               Etc...
Query with SPARQL

Select a certain director "George Lucas"
SELECT ?title WHERE {
 ?film rdf:type movie:film ;
    foaf:page ?link ;
    dc:title ?title ;
movie:director ?director.
 ?director movie:director_name ?nameDirector.
 FILTER ( regex(?nameDirector, "George Lucas","i")
         && regex(str(?link), "^http://www.imdb.com/title", "i")
     )
 }ORDER BY ?title
Query with SPARQL

Count the films produced by a certain director
SELECT count (*) WHERE {
 ?film rdf:type movie:film ;
    foaf:page ?link ;
    dc:title ?title ;
movie:director ?director.
 ?director movie:director_name ?nameDirector.
 FILTER ( regex(?nameDirector, "George Lucas","i")
         && regex(str(?link), "^http://www.imdb.com/title", "i")
     )
 }ORDER BY ?title
Query with SPARQL

Select the films produced by a certain director
and Filter them by date
SELECT ?title ?link WHERE {
 ?film rdf:type movie:film ;      foaf:page ?link ;
    dc:title ?title ;    dc:date ?date ;
    movie:director ?director.
 ?director movie:director_name ?nameDirector.
 FILTER ( regex(?nameDirector, "George Lucas","i")
         && regex(str(?link), "^http://www.imdb.com/title", "i")
         && str(?date) > "2000"
     )
 }ORDER BY ?title
SPARQL on Wordpress
Use Plugins

OpenLink Data Explorer
  Site http://molene.enstb.org/F2B506/ index.php?sioc_type=site
  Post http://molene.enstb.org/F2B506/ index.php?
    sioc_type=post&sioc_id=274

Embedded RDF
  auther http://molene.enstb.org/F2B506/ ?author=1
  auther http://molene.enstb.org/F2B506/ ?feed=foaf&author=1
Query on SPARQL

SELECT ALL POSTS
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX sioc: <http://rdfs.org/sioc/ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT ?post ?title ?content ?creator ?user ?container
WHERE {
?post dc:title ?title.
?post sioc:content ?content.
?creator rdfs:label ?user
?post sioc:has_container ?container.
} ORDER BY ?title
Thanks !

Weitere ähnliche Inhalte

Ähnlich wie Sparql

Java EE 6 CDI Integrates with Spring & JSF
Java EE 6 CDI Integrates with Spring & JSFJava EE 6 CDI Integrates with Spring & JSF
Java EE 6 CDI Integrates with Spring & JSF
Jiayun Zhou
 
WWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
WWW09 - Triplify Light-Weight Linked Data Publication from Relational DatabasesWWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
WWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
Sören Auer
 

Ähnlich wie Sparql (20)

Real-time Semantic Web with Twitter Annotations
Real-time Semantic Web with Twitter AnnotationsReal-time Semantic Web with Twitter Annotations
Real-time Semantic Web with Twitter Annotations
 
Joy Nelson - BIBFRAME: RDF syntax, BIBFRAME tools, and SPARQL
Joy Nelson - BIBFRAME: RDF syntax, BIBFRAME tools, and SPARQLJoy Nelson - BIBFRAME: RDF syntax, BIBFRAME tools, and SPARQL
Joy Nelson - BIBFRAME: RDF syntax, BIBFRAME tools, and SPARQL
 
BIBFRAME: RDF syntax, BIBFRAME tools and SPARQL
BIBFRAME: RDF syntax, BIBFRAME tools and SPARQLBIBFRAME: RDF syntax, BIBFRAME tools and SPARQL
BIBFRAME: RDF syntax, BIBFRAME tools and SPARQL
 
Java EE 6 CDI Integrates with Spring & JSF
Java EE 6 CDI Integrates with Spring & JSFJava EE 6 CDI Integrates with Spring & JSF
Java EE 6 CDI Integrates with Spring & JSF
 
CIRCUIT 2015 - Content API's For AEM Sites
CIRCUIT 2015 - Content API's For AEM SitesCIRCUIT 2015 - Content API's For AEM Sites
CIRCUIT 2015 - Content API's For AEM Sites
 
Building Apps with SwiftUI and Firebase
Building Apps with SwiftUI and FirebaseBuilding Apps with SwiftUI and Firebase
Building Apps with SwiftUI and Firebase
 
Graph Analysis over JSON, Larus
Graph Analysis over JSON, LarusGraph Analysis over JSON, Larus
Graph Analysis over JSON, Larus
 
Arquillian Constellation
Arquillian ConstellationArquillian Constellation
Arquillian Constellation
 
GDG Meets U event - Big data & Wikidata - no lies codelab
GDG Meets U event - Big data & Wikidata -  no lies codelabGDG Meets U event - Big data & Wikidata -  no lies codelab
GDG Meets U event - Big data & Wikidata - no lies codelab
 
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OOVirtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
 
WWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
WWW09 - Triplify Light-Weight Linked Data Publication from Relational DatabasesWWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
WWW09 - Triplify Light-Weight Linked Data Publication from Relational Databases
 
Towards Virtual Knowledge Graphs over Web APIs
Towards Virtual Knowledge Graphs over Web APIsTowards Virtual Knowledge Graphs over Web APIs
Towards Virtual Knowledge Graphs over Web APIs
 
Using Stargate APIs for Cassandra-Backed Applications
Using Stargate APIs for Cassandra-Backed ApplicationsUsing Stargate APIs for Cassandra-Backed Applications
Using Stargate APIs for Cassandra-Backed Applications
 
YQL: Hacking on steroids - Yahoo! Open Hack Day 2012
YQL: Hacking on steroids - Yahoo! Open Hack Day 2012YQL: Hacking on steroids - Yahoo! Open Hack Day 2012
YQL: Hacking on steroids - Yahoo! Open Hack Day 2012
 
SuRf – Tapping Into The Web Of Data
SuRf – Tapping Into The Web Of DataSuRf – Tapping Into The Web Of Data
SuRf – Tapping Into The Web Of Data
 
Rendering: Or why your perfectly optimized content doesn't rank
Rendering: Or why your perfectly optimized content doesn't rankRendering: Or why your perfectly optimized content doesn't rank
Rendering: Or why your perfectly optimized content doesn't rank
 
Rails 101
Rails 101Rails 101
Rails 101
 
URL Design
URL DesignURL Design
URL Design
 
ExpLOD: a framework for explaining recommendations based on the Linked Open D...
ExpLOD: a framework for explaining recommendations based on the Linked Open D...ExpLOD: a framework for explaining recommendations based on the Linked Open D...
ExpLOD: a framework for explaining recommendations based on the Linked Open D...
 
CloudML talk at DevFest Madurai 2016
CloudML talk at DevFest Madurai 2016 CloudML talk at DevFest Madurai 2016
CloudML talk at DevFest Madurai 2016
 

Kürzlich hochgeladen

Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
dlhescort
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
lizamodels9
 
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
Abortion pills in Kuwait Cytotec pills in Kuwait
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
lizamodels9
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
dlhescort
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
amitlee9823
 

Kürzlich hochgeladen (20)

Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
(Anamika) VIP Call Girls Napur Call Now 8617697112 Napur Escorts 24x7
 
Value Proposition canvas- Customer needs and pains
Value Proposition canvas- Customer needs and painsValue Proposition canvas- Customer needs and pains
Value Proposition canvas- Customer needs and pains
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceEluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperity
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 

Sparql

  • 1. Querying with SPARQL Govinda et Lei
  • 3. IMDB Object LinkedMDB publishes linked open data using the D2R Server. The project aims at publishing the first open semantic web database for movies, including a large number of interlinks to several datasets on the open data cloud and references to related webpages.
  • 5. IMDB Accessing Data Web browsers (see examples below) film: http://data.linkedmdb.org/page/film actor: http://data.linkedmdb.org/page/actor Semantic Web browsers - entry point: http://data.linkedmdb.org/all SPARQL clients - SPARQL endpoint: http://data.linkedmdb.org/sparql
  • 6. Search film on HTML Goto category: Film -> Disraeli http://data.linkedmdb.org/page/film/100 Etc...
  • 7. Query with SPARQL Online Explorer: SPARQL Explorer Query examples following...
  • 8. Query with SPARQL Select all director names SELECT ?nameDirector WHERE { ?director movie:director_name ?nameDirector. }ORDER BY ?nameDirector Etc...
  • 9. Query with SPARQL Select a certain director "George Lucas" SELECT ?title WHERE { ?film rdf:type movie:film ; foaf:page ?link ; dc:title ?title ; movie:director ?director. ?director movie:director_name ?nameDirector. FILTER ( regex(?nameDirector, "George Lucas","i") && regex(str(?link), "^http://www.imdb.com/title", "i") ) }ORDER BY ?title
  • 10. Query with SPARQL Count the films produced by a certain director SELECT count (*) WHERE { ?film rdf:type movie:film ; foaf:page ?link ; dc:title ?title ; movie:director ?director. ?director movie:director_name ?nameDirector. FILTER ( regex(?nameDirector, "George Lucas","i") && regex(str(?link), "^http://www.imdb.com/title", "i") ) }ORDER BY ?title
  • 11. Query with SPARQL Select the films produced by a certain director and Filter them by date SELECT ?title ?link WHERE { ?film rdf:type movie:film ; foaf:page ?link ; dc:title ?title ; dc:date ?date ; movie:director ?director. ?director movie:director_name ?nameDirector. FILTER ( regex(?nameDirector, "George Lucas","i") && regex(str(?link), "^http://www.imdb.com/title", "i") && str(?date) > "2000" ) }ORDER BY ?title
  • 13. Use Plugins OpenLink Data Explorer Site http://molene.enstb.org/F2B506/ index.php?sioc_type=site Post http://molene.enstb.org/F2B506/ index.php? sioc_type=post&sioc_id=274 Embedded RDF auther http://molene.enstb.org/F2B506/ ?author=1 auther http://molene.enstb.org/F2B506/ ?feed=foaf&author=1
  • 14. Query on SPARQL SELECT ALL POSTS PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX sioc: <http://rdfs.org/sioc/ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dc: <http://purl.org/dc/elements/1.1/> SELECT ?post ?title ?content ?creator ?user ?container WHERE { ?post dc:title ?title. ?post sioc:content ?content. ?creator rdfs:label ?user ?post sioc:has_container ?container. } ORDER BY ?title