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

Invite User (People)

Provide as much information as possible and create shallow profiles. Send the invites to those people and connection requests.

mutation (
	$user: InviteUserInput!
	$connectionType: C2cConnectionType!
  ) {
	createC2cInvite (
  	user: $user
  	connectionType: $connectionType
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	user {
    	id
  	}
  	invitedUser {
    	id
    	username
  	}
	}
  }

Last updated