For the complete documentation index, see llms.txt. This page is also available as Markdown.

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