We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wondering anyone could make an example using DBpedia via its SPARQL endpoint?
Here is a SPARQL CONSTRUCT Query example that could be used to create the GraphQL mapping file.
PREFIX : <https://github.com/dbcls/grasp/ns/> PREFIX dcterms: <http://purl.org/dc/terms/> PREFIX db: <http://purl.jp/bio/03/dbcatalog/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbpedia: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> CONSTRUCT { ?iri :iri ?iri ; rdfs:label ?title ; dbp:author ?author . ?author rdfs:label ?authorName . } WHERE { ?iri a schema:Book ; rdfs:label ?title ; dbp:author ?author . FILTER (LANG(?title) = 'en') ?author rdfs:label ?authorName . FILTER (LANG(?authorName) = 'en') }
Live Query Results Page Links:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Wondering anyone could make an example using DBpedia via its SPARQL endpoint?
Here is a SPARQL CONSTRUCT Query example that could be used to create the GraphQL mapping file.
Live Query Results Page Links:
The text was updated successfully, but these errors were encountered: