List Pending C2C Connection Requests

Returns a list of pending connection requests this user sent to other users.

query (
	$invitedUserId: ID
	$includedType: C2cConnectionType
	$excludedType: C2cConnectionType
	$limit: Int
  ) {
	pendingC2cConnectionRequests (
  	invitedUserId: $invitedUserId
  	includedType: $includedType
  	excludedType: $excludedType
  	limit: $limit
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	user {
    	id
  	}
  	invitedUser {
    	id
  	}
	}
  }

Last updated

Was this helpful?