This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * | |
| WHERE { | |
| ?s ?p ?o | |
| } | |
| LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX dct: <http://purl.org/dc/terms/> | |
| SELECT ?title | |
| WHERE { | |
| ?book dct:creator <http://bnb.data.bl.uk/id/person/AustenJane1775-1817> . | |
| ?book dct:title ?title | |
| } | |
| LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
| PREFIX dct: <http://purl.org/dc/terms/> | |
| PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
| PREFIX bio: <http://purl.org/vocab/bio/0.1/> | |
| PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
| SELECT DISTINCT ?name | |
| WHERE { | |
| ?person owl:sameAs <http://viaf.org/viaf/102333412> . | |
| ?person bio:event ?event . | |
| ?event rdf:type bio:Birth . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX dct: <http://purl.org/dc/terms/> | |
| PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
| SELECT DISTINCT ?title | |
| WHERE { | |
| ?person owl:sameAs <http://viaf.org/viaf/102333412> . | |
| ?book dct:creator ?person . | |
| ?book dct:title ?title | |
| } | |
| LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * | |
| WHERE { | |
| ?subject ?predicate "Austen, Jane" | |
| } | |
| LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * | |
| WHERE { | |
| ?subject ?predicate "Austen, Jane, 1775-1817" | |
| } | |
| LIMIT 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
| PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
| PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
| PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
| PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
| PREFIX dc: <http://purl.org/dc/elements/1.1/> | |
| SELECT ?s ?o | |
| WHERE { | |
| ?s <http://rdaregistry.info/Elements/u/P60447> ?b . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX crm: <http://erlangen-crm.org/current/> | |
| PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
| PREFIX thes: <http://collection.britishmuseum.org/id/thesauri/> | |
| PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX bmo: <http://collection.britishmuseum.org/id/ontology/> | |
| PREFIX thesIdentifier: <http://collection.britishmuseum.org/id/> | |
| SELECT DISTINCT ?id ?title ?name ?desc ?date | |
| { | |
| ?object crm:P70i_is_documented_in <http://collection.britishmuseum.org/id/bibliography/294> . | |
| OPTIONAL { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX crm: <http://erlangen-crm.org/current/> | |
| PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
| PREFIX thes: <http://collection.britishmuseum.org/id/thesauri/> | |
| PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX bmo: <http://collection.britishmuseum.org/id/ontology/> | |
| PREFIX thesIdentifier: <http://collection.britishmuseum.org/id/> | |
| SELECT DISTINCT ?id (GROUP_CONCAT(?title; SEPARATOR = "|") as ?titles) (GROUP_CONCAT(?name; SEPARATOR = "|") as ?names) (GROUP_CONCAT(?desc; SEPARATOR = "|") as ?descs) (GROUP_CONCAT(?date; SEPARATOR = "|") as ?dates) | |
| { | |
| ?object crm:P70i_is_documented_in <http://collection.britishmuseum.org/id/bibliography/294> . | |
| OPTIONAL { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PREFIX bio: <http://purl.org/vocab/bio/0.1/> | |
| PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
| PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
| SELECT ?author ?name ?dob WHERE { | |
| ?event a bio:Birth; | |
| bio:date "1945"^^xsd:gYear; | |
| bio:date ?dob. | |
| ?author bio:event ?event; | |
| foaf:name ?name. |