ok it is difficult to find a title for this question...sorry...i'll try to better explain my problem!
I have a graph and an ontology. I have hundreds models like Person, Animal, Book etc. and any of them has properties with several depth:
<Person1> <hasName> <Luca>
<Person1> <hasAddress> <Address1>
<Address1> <hasStreet> "Some street"
Please NOTE that for 'model' i mean a collection of OWL/RDF Classes and properties, in the example, the model 'Person' contains classes 'Person' and 'Address'.
What I would like to do is to get an entire model instance with 1 query...like 'get('Person1')'
As an example think about Freebase. In Freebase they have topics (instances of models) which are of some types (what i call models) and a topic is fully described by a class and several properties which may refer to other classes (mediators)...when you visit the webpage of a freebase topic, you can see the entire model.
In the ontology i can't define the models, but i have them defined on other files and are available in any format, from RDF to JSON and Ruby/Python objects.
Actually i don't know how to solve this problem...i thought to use the file with models in JSON or Ruby obj to automatically create a SPARQL query for a given model, but this seems crazy when you should retrieve many models at the same time..its really slow i think...(i have something like 200 different models..)
Is there any 'pure' SPARQL way that solves my problem or i should craft a specific query for each model?
thank you for any help!
Luca
