Send C2C Connection Request

Find people using search, and then send them a connection request

mutation (
	$invitedUserId: ID!
	$connectionType: C2cConnectionType!
  ) {
	createC2cConnectionRequest (
  	invitedUserId: $invitedUserId
  	connectionType: $connectionType
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	user {
    	id
  	}
  	invitedUser {
    	id
  	}
	}
  }

Last updated

Was this helpful?