You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the problem including expected versus actual behavior:
Try to use await client.Indices.GetAsync(....) and it throws
Elastic.Transport.UnexpectedTransportException : The JSON value could not be converted to System.Collections.Generic.ICollection`1[System.String]. Path: $.relations.entry | LineNumber: 0 | BytePositionInLine:
I have an index with a relation:
"mappings": {
"properties": {
.......
"parentChild": {
"type": "join",
"relations": {
"entry": "term"
}
},
.........
Expected behavior
Previously this does not throw any exception and based on the official web site, it is a valid relation still