Does createWithoutData query object?

Hi,

I’ve been looking at Parse.Object.createWithoutData(id) in the JS SDK and noticed that on website it will return the real object with data if the id and classname provided match with one instance in the database, due to single instance. I wonder what is the look up mechanism behind the scene. Does the function query the given classname with the given id to match object? Or does it look up local data store (when it’s not enabled)? I’m leaning towards the former one but just wanted to make sure. Thanks!