我可以多次使用 TypeDB(以前称为 Grakn)中的关系吗?
我正在建立我的 TypeDB 架构,并且遇到实体问题,这是由许多不同的事情引起的,例如由某种实践或某种因素引起。
我指定了导致的关系,例如:
causing sub relation,
relates causer,
relates caused,
我在文档中没有看到现在两个实体实践和因素是否可以扮演起因的角色。如果有人可以回答这个问题或者向我指出更广泛的文档 TypeDB 甚至是更广泛的示例,那就太好了。
I'm putting up my TypeDB schema and I have the entity problem which is caused by many different things, e.g. by a certain practice or a certain factor.
I specified the relation causing like:
causing sub relation,
relates causer,
relates caused,
I don't see in the documentation whether now both entities practice AND factor can play the role causer. It would be great if someone could answer this or point me to a more extensive documentation TypeDB or even an extensive example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个实体可以扮演的关系角色是在实体定义本身上定义的。
因此,如果您希望实践和因子实体都扮演“因果”角色,您可以定义:
以下是有关角色定义的文档:https://docs.vaticle.com/docs/schema/concepts#entity-to-play-a-role
The relationship roles that each entity can play are defined on the entity definitions themselves.
So, if you wanted both practice and factor entities to play 'causer' you would define:
Here is the documentation on role definitions: https://docs.vaticle.com/docs/schema/concepts#entity-to-play-a-role