Kein "Product Configurator Setting Entity" in store-api

Hallo Zusammen

Ich bin neu hier und auch neu mit Shopware. Ich versuche gerade die store-api besser zu verstehen und möchte eine Produkt-Variation und deren Eigenschaften abfragen.

Im Prinzip möchte ich wie auch in der Storefront das passende Produktbild abbilden und nicht nur die Farbe der Eigenschaft.

Query:

POST http://shopware.test/store-api/product/f9077106d81645cd968af9c20029d4df
{
	"includes": {
        "product": ["id", "name", "description", "translated"],
        "property_group": ["id",  "options"],
		"property_group_option": ["id", "name",  "configuratorSetting"],
        "product_configurator_setting": ["id", "productId", "mediaId"]
	}
}

Response:

{
    "apiAlias": "product_detail",
    "product": {
        "id": "0f9a1152548145e99a5f57fbffa0387a",
        ...
    },
    "configurator": [
        {
            "id": "cefd64fc970247e88a0325a716a32d41",
            "options": [
                {
                    "name": "Blue",
                    "id": "b5d215e330d041158e53fd89ac357d9e",
                    "apiAlias": "property_group_option"
                },
                ...
            ]
        }
    ]
}

Erwarteter Response:

{
    "apiAlias": "product_detail",
    "product": {
        "id": "0f9a1152548145e99a5f57fbffa0387a",
        ...
    },
    "configurator": [
        {
            "id": "cefd64fc970247e88a0325a716a32d41",
            "options": [
                {
                    "name": "Blue",
                    "id": "b5d215e330d041158e53fd89ac357d9e",
                    "apiAlias": "property_group_option",
                    "configuratorSetting": {
                        "id": "xxx",
                        "productId": "xxx",
                        "mediaId": "xxx",
                        "media": {
                            ...
                        },
                        "apiAlias": "product_configurator_setting",
                    }
                },
                ...
            ]
        }
    ]
}

Ich hoffe Ihr versteht mein Problem oder was ich erreichen möchte.

Schonmal Danke für euer Feedback. :grinning:

Konntest du das Problem lösen? Ich komme gerade an der gleichen Stelle nicht weiter.