Re: copyField'ing child documents

2025-05-05 Thread Dmitri Maziuk
On 5/2/25 04:10, Jan Høydahl wrote: Seems you are using the field guessing logic. It is helpful for quick experimentation, as any text field will have a string equivalent "mytext_str" which can be immediately used for sorting or faceting, and thus requires *_str to be defined. It is not a recom

Re: copyField'ing child documents

2025-05-02 Thread Jan Høydahl
Seems you are using the field guessing logic. It is helpful for quick experimentation, as any text field will have a string equivalent "mytext_str" which can be immediately used for sorting or faceting, and thus requires *_str to be defined. It is not a recommended feature to use in production,

copyField'ing child documents

2025-05-01 Thread Dmitri Maziuk
Hi all, this is more o a dev question, but posting here to a wider audience. Due to overzealous trimming on my part, I have a schema without `dynamicField name="*_str"` in it. Inserting a child document ``` { "id" : "P1", "C1": { "add" : { "id" : "P1!C1", ... } } } ``