Hello, i have been trying to create/init a collection with a couple of indexes.
When i am trying to read all existing indexes of a collection i am getting a System.Text.Json.JsonException with the Message "The JSON value could not be converted to System.String. Path: $.indexes[1].fields[0]."
After some research, I found out that there is a difference between the model of the persistent index and the model of the inverted index.
The 'fields' property is a string array in the persistent index and an object array in the inverted index. When querying, however, it tries to convert both to an IList\<string>
Hello, i have been trying to create/init a collection with a couple of indexes. When i am trying to read all existing indexes of a collection i am getting a System.Text.Json.JsonException with the Message "The JSON value could not be converted to System.String. Path: $.indexes[1].fields[0]." After some research, I found out that there is a difference between the model of the persistent index and the model of the inverted index.
The 'fields' property is a string array in the persistent index and an object array in the inverted index. When querying, however, it tries to convert both to an IList\<string>