如何在 kuzzle 管理控制台上创建枚举
How to create an enum on kuzzle admin console
我正在尝试从管理控制台创建枚举字段,但无法正确实现
我浏览了 Elasticsearch 的文档,但我并没有真正理解所有内容。
"ville": {
"type": "enum",
"typeOptions": {
"values": ["Montpelier", "Paris", "Lmoges", "Grenoble", "Bordeaux", "Rodez"],
"mandatory": "true"
}
}
}
有人可以指导我吗?
Elasticsearch 不处理枚举类型。
据我了解,您正在尝试使用 Data Validation module. You cannot update a collection specifications (aka "validations") with the Admin Console but you will need to use the collection:updateSpecifications API 操作。
我正在尝试从管理控制台创建枚举字段,但无法正确实现 我浏览了 Elasticsearch 的文档,但我并没有真正理解所有内容。
"ville": {
"type": "enum",
"typeOptions": {
"values": ["Montpelier", "Paris", "Lmoges", "Grenoble", "Bordeaux", "Rodez"],
"mandatory": "true"
}
}
}
有人可以指导我吗?
Elasticsearch 不处理枚举类型。
据我了解,您正在尝试使用 Data Validation module. You cannot update a collection specifications (aka "validations") with the Admin Console but you will need to use the collection:updateSpecifications API 操作。