List Received Pending Group user member join request

Group admins can list pending group user member join requests to a group.

 query (
	$groupId: ID!
	$limit: Int
  ) {
	receivedGroupUserMemberJoinRequests (
  	groupId: $groupId
  	limit: $limit
	) {
  	id
  	status
  	role
  	insertedAt
  	respondedAt
  	updatedAt
  	group {
    	id
  	}
  	user {
    	id
  	}
	}
  }

Last updated

Was this helpful?