> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/group-features/list-pending-group-invites-sent.md).

# List pending Group invites (Sent)

```
query (
	$groupId: ID
	$invitedUserId: ID
	$limit: Int
  ) {
	pendingGroupUserMemberInvites (
  	groupId: $groupId
  	invitedUserId: $invitedUserId
  	limit: $limit
	) {
  	id
  	status
  	role
  	insertedAt
  	respondedAt
  	updatedAt
  	group {
    	id
  	}
  	user {
    	id
  	}
  	invitedUser {
    	id
  	}
	}
  }

```
