CreateIndividualResponse
A union representing the possible return types when creating an Individual
union CreateIndividualResponse =
  | BadRequestError
  | CreateIndividualResult
  | InternalServerError
Possible types
CreateIndividualResponse.BadRequestError object
Returned when there is an error in the request.
CreateIndividualResponse.CreateIndividualResult object
The successful result of creating an Individual
CreateIndividualResponse.InternalServerError object
Returned when an error is encountered that is not expected.
Returned By
createIndividual mutation