Manage organizations using Graph API
Query all organizations
GET /graph/Organization
Query organization by id
GET /graph/Organization[@id='ID_GOES_HERE']
Query organization by name
GET /graph/Organization[@name='NAME_GOES_HERE']
Query user count in an organization
GET /graph/Organization[@id='ORG_ID']/~OneToMany/ProfileGroup/~Membership:ProfileProfileGroupMembership/Profile{count}
Query all users in an organization
/graph/Organization[@id='ORG_ID']/~OneToMany/ProfileGroup/~Membership:ProfileProfileGroupMembership/Profile
Query users in a specific range (offset, limit) in an organization
/graph/Organization[@id='ORG_ID']/~OneToMany/ProfileGroup/~Membership:ProfileProfileGroupMembership/Profile{i=10,r=30}