内容
我们受到ArangoDB建议的限制,不能使用以下划线_
https://www.arangodb.com/docs/stable/data-modeling-naming-conventions-attribute-names.html开头的属性名,因为我们希望确保ArangoDB在以后的阶段不会使用任何此类属性。
我们可以添加属性properties:{myproperty1:'abc',_myUnderscoreProperty:'def'}
,
但如果我们对代表用户的文档执行此操作,properties:{_name:'abc',_email:'abc@graphileon.com'}
,
我们需要在properties._name
上创建一个唯一的约束,但这似乎是不可能的。
问题
这是可能的,还是有解决办法?
1条答案
按热度按时间vh0rcniy1#
是的,这是可能的。您可以在字段
properties._name
上创建唯一索引