Different between objectId and id in graphql

Hi Guys I’m confused between ObjectId and id when using Graphql. I had found but didn’t see any answer and remained on the document. Thanks for help

ObjectId is the regular Parse id for objects (the same one that you see on Parse Dashboard). Id is generated encoding the combination of the ClassName + ObjectId. It works as a global id since it does not only have the information of the object id, but also the class to which the object belongs. This global id was included to turn the API Relay Server compliant.

1 Like

Thank you sir <3 <3 <3