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
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>
The text was updated successfully, but these errors were encountered:
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>
The text was updated successfully, but these errors were encountered: