How to add index on additional field in many-to-many link? For example on field "role" in account-to-contact link?
I try add Index: true to additionalColumns in link description. Nothing happens.
I try add Index: true to additionalColumns in link description. Nothing happens.
Code:
"links": {
"accounts": {
"additionalColumns": {
"role": {
"index":true
}
}
},

Comment