Получить дочерний объект в FOSElasticaBundle Symfony - PullRequest
0 голосов
/ 21 апреля 2019

Я хочу получить дочерний объект из моего продукта.

Это fos_elastica.yaml file fos_elastica: clients: default: { host: elasticsearch, port: 9200 } indexes: photos: types: photo: properties: name: ~ sort: ~ _parent: type: "product" identifier: "id" persistence: driver: orm model: App\Entity\Photo provider: ~ finder: ~ products: types: product: properties: title: ~ description: ~ created_at: ~ persistence: driver: orm model: App\Entity\Product provider: ~ finder: ~

Как получить дочернее поле 'name' из индексовфото внутри продукта?

...