I have my class name and friendName.
I dont have the objectId
What is the code to delete it in Parse from SWIFT?
In ObjC, it is something like:
PFObject *object = [PFObject objectWithoutDataWithClassName:@"invFriend"
objectId:@"abcd"];
[object deleteEventually];
How can i do that from swift without objectId?