How do I create index on items.id field in this mongokit schema?
I tried to creating index on items.id, but it's throwing ValueError: Error in indexes: can't find items.id in structure
.
structure = {
'items': [{
'id': int,
}]
}
indexes = [{
'fields': ['items.id'],
}]