Is there a way in GraphDB 10.0.0 to safe the conclusions of different rules in different named graphs or contexts? For example, if I have two rules like this:
id: rule1
x a <:Article>
y a <:Author>
--------------------
y <:mightWrite> x [Context: base_context:c1]
id: rule2
x a <:Book>
y a <:Author>
--------------------
y <:mightWrite> x [Context: base_context:c2]
Reasoning would lead to the results of both rules being stored within context onto:implicit
instead of, what I would have expected, base_context:c1
and base_context:c2
. Thus, is there a way to do such splitting of the readoning results?
Thank you in advance!