Re: Would it make sense to use GraphQL with Fuseki as a backend?

2017-04-30 Thread james anderson
good afternoon; > On 2017-04-30, at 11:53, Laura Morales wrote: > > Would it make sense to use GraphQL with Fuseki as a backend? you posed the question in different terms some time ago. now, after wrangling sparql for two months, you remain unconvinced and raise the

How to put one model in another

2017-04-30 Thread tina sani
I have a model Model1 with all data, having Jena rules. How can I put it in another model Model2 which may or may not have any data? Second, after putting the model in another model, would we able to replace previous values/data with new one, generated using Jena rules?

Would it make sense to use GraphQL with Fuseki as a backend?

2017-04-30 Thread Laura Morales
Would it make sense to use GraphQL with Fuseki as a backend?

Re: How to put one model in another

2017-04-30 Thread Dave Reynolds
On 30/04/17 10:30, tina sani wrote: I have a model Model1 with all data, having Jena rules. How can I put it in another model Model2 which may or may not have any data? The way to add triples from one model to another is to use the unsurprisingly named "add" as any glance at the javadoc would

Re: How to put one model in another

2017-04-30 Thread tina sani
Hi Dave, if we have a rule like if Person publications less than 10, Person is JuniorResearcher if Person publications greater than 10, Person is SeniorResearcher If person publication is first less than 10, rules will assign him to JuniorResearcher class but when it exceeds 10, becomes

Re: How to put one model in another

2017-04-30 Thread Dave Reynolds
On 30/04/17 18:40, tina sani wrote: Hi Dave, if we have a rule like if Person publications less than 10, Person is JuniorResearcher if Person publications greater than 10, Person is SeniorResearcher If person publication is first less than 10, rules will assign him to JuniorResearcher class