Matt Goldberg

Results 15 comments of Matt Goldberg

I also believe support for framing would be excellent.

It didn't work in 6.1.1, but I don't think I ever tried it in versions earlier than that.

Actually, I used a bad example. The above example _does_ work. Lists in the object position seem to be supported. Lists in the subject position raise the error. The following...

I'm running into the same issue running pydantic 1.9.0 in python 3.9.7 on linux.

To clarify, if I were to run ``` import rdflib from rdflib.namespace import FOAF foaf = rdflib.Graph(identifier = FOAF) foaf.parse("http://xmlns.com/foaf/spec/index.rdf", format="xml") ds = rdflib.Dataset() ds.add_graph(foaf) ``` am I correct in...

In rdflib 6.1.1, the following works as expected: ```python list( g.query("""\ SELECT * WHERE { SERVICE { { SELECT ?s ?p ?o WHERE { ?s ?p ?o } LIMIT 10...

Explicitly specifying the prefix does not help. This snippet doesn't work for me either: ```python from rdflib import Graph g = Graph() list( g.query("""\ PREFIX dbp: SELECT * WHERE {...

I don't think a prefix map is necessary. As I pointed out, in `evalServiceQuery`, `part.term` already contains the correctly expanded `URIRef` of the endpoint that should be able to be...

It looks like this issue (or another closely related issue) still exists. Another example of the issue is if you load the following turtle file: ```turtle @prefix ex: . @prefix...

If I remember correctly I was using [pyld](https://github.com/digitalbazaar/pyld) at the time.