You need to sign in to do that
Don't have an account?
Salesforce object ordering from API
I'm making an app that pulls Salesforce objects from the API and saves them in my local DB. Certain S-objects refer to other S-objects of the same type (e.g. Account has a parent Account field) and when I do the data pull, the API appears to send them to me in safe order where if S-object B refers to S-object A (e.g. B's parent Account is A) then the API sends A first, then B after.
I can't seem to find a case where this does not work, but I want to be completely sure that I can safely make the assumption that these will always be set in a safe order. Can any API experts confirm/deny this assumption please?