There is an index design problem I am making time to fix, suppose you use property loopback__model__name to specify a model name, and you have an indexable property age, you need to create a index in model.json that contains those two properties to improve the performance.
Acceptance Criteria
{
properties: {
foo: {index: true}
}, // the first way
indexes: {
composed: [foo, bar, baz]
} // the second way
}
There is an index design problem I am making time to fix, suppose you use property loopback__model__name to specify a model name, and you have an indexable property age, you need to create a index in model.json that contains those two properties to improve the performance.
Acceptance Criteria