Mutations
privatePersonCreateNoEnrich
Creates a private person without enriching their data with data from registries. Use together with privatePersonRegistrySearch to verify registry data before creating.
mutation PrivatePersonCreateNoEnrich($where: PrivatePersonCreateInput!) {
privatePersonCreateNoEnrich(where: $where) {
success
person {
id
name
}
}
}input PrivatePersonCreateInput {
name: String!
nin: String!
country: CountryCode!
birthDate: Date
birthYear: Year
gender: Gender
address: [AddressInput!]!
citizenship: CountryCode
}Arguments
where PrivatePersonCreateInput! non-null input
Type
PrivatePersonPayload object
PrivatePersonPayload
The payload for a PrivatePerson mutation.