Query all users associated with a specific Permission Set #inSalesforce

Query all users associated with a specific Permission Set 

SELECT Id, PermissionSetId, PermissionSet.Name, PermissionSet.ProfileId, PermissionSet.Profile.Name, AssigneeId, Assignee.Name FROM PermissionSetAssignment WHERE PermissionSet.Name = 'samplePS'


Comments