Skip to content
New issue

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

Service Description for sparql.wikipathways.org #66

Open
egonw opened this issue Jun 9, 2019 · 3 comments
Open

Service Description for sparql.wikipathways.org #66

egonw opened this issue Jun 9, 2019 · 3 comments

Comments

@egonw
Copy link
Member

egonw commented Jun 9, 2019

YummyData expects a Service Description when requesting Turtle or RDF/XML from http://sparql.wikipathways.org/ which would look like:

@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns1: <http://sparql.wikipathways.org/> .
@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .

ns1:sparql rdf:type sd:Service ; 
  sd:endpoint ns1:sparql ;
  sd:supportedLanguage sd:SPARQL11Query ;
  sd:url ns1:sparql .
@egonw
Copy link
Member Author

egonw commented Jun 9, 2019

@nunogit, would that be hard? It sounds like a simple rewrite, not? We would have that file as static content as sd.ttl somewhere, and when a Accept: text/turtle (or something like that) is requested from sparql.wikipathways.org, then it would just return that content.

(Not urgent at all.)

@egonw egonw assigned marvinm2 and unassigned egonw and nunogit May 11, 2020
@marvinm2
Copy link

It's included in the current release. I don't know exactly what yummydata looks for, but the info is there. I changed the prefix ns1 to 'wiki'

SELECT ?o ?p ?q ?r
WHERE {
wiki:sparql rdf:type ?o;
sd:endpoint ?p;
sd:supportedLanguage ?q;
sd:url ?r.
}

@marvinm2
Copy link

marvinm2 commented May 11, 2020

The CURL doesn't return anything still though. Have to see how to implement that. I tried allowing it with Virtuoso configurations, packages, sponger, and plain editing the graph IRI, but no result. Documentation is lacking or very old. I don't know how to edit the service description.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants