Daniel Zavacky

Results 4 comments of Daniel Zavacky

@toluaina thanks for resolving 1st issue. Did you have a chance to look to 2nd one? It has two different cases, when it hapens: 1. if we have table_a (with...

@toluaina Yes, it is, but in original post, this issue is described only for case when there are two associations to same table. But problem seems to occure even in...

I can't get 1. scenario (parent/child) working. I have this schema and this DB table: ![schema_parent_child](https://user-images.githubusercontent.com/45260819/115860306-9b40cc80-a431-11eb-8163-bdada64ae53d.jpg), but it will create this documents in elasticsearch: ![elastic_parent_child](https://user-images.githubusercontent.com/45260819/115860493-dd6a0e00-a431-11eb-9a2e-1710fe56d158.jpg) 2. scenario is resolved by...

Yes, I tried both ``` "foreign_key": { "child": ["id"], "parent": ["parent_id"] } ``` and ``` "foreign_key": { "child": ["parent_id"], "parent": ["id"] } ``` and neither worked as expected. Yes, recursive...