You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
I was doing a query using GROUP BY and the result was a XML with namespace that can't be parsed.
Here is the query:
SELECT
Produto__r.Marca__r.Id,
Produto__r.Marca__r.Name,
Produto__r.Marca__c,
Produto__r.Marca__r.Id_Box__c
FROM
Veiculos__c
WHERE
Ativo__c = true
GROUP BY
Produto__r.Marca__r.Id,
Produto__r.Marca__r.Name,
Produto__r.Marca__c,
Produto__r.Marca__r.Id_Box__c
I'm using a workaround for now, basically I'm removing the sf: namespace from the xml tags, adding the xml declaration with a root node and loading it as a xml string something like:
Hi :)
I'm opening the issue as requested.
I was doing a query using GROUP BY and the result was a XML with namespace that can't be parsed.
Here is the query:
The result:
I'm using a workaround for now, basically I'm removing the sf: namespace from the xml tags, adding the xml declaration with a root node and loading it as a xml string something like:
Best regards
The text was updated successfully, but these errors were encountered: