Hi everyone,
I'm trying to extract fields from salesforce from a complex architecture. I created a dedicated index for extracting a log that contains the summary of the order with the various items. The structure of the objects is not editable and the query I would like to be able to execute is this:
SELECT Id, (SELECT Id, (SELECT Description FROM FulfillmentOrderLineItems) from FulfillmentOrders)
FROM OrderSummary
Is there a way to extract this log?
... View more