person
Get a single person (user / partner)
GraphQL Schema
extend type query {
"""Get a single person (user / partner)"""
person(userId: ID!, personId: ID): Person
}
Arguments
Name | Type | Description |
---|---|---|
userId | ID! | Unique ID of the user |
personId | ID |
Response Shape
This query returns Person
Name | Type | Description |
---|---|---|
id | ID! | Unique ID of the object |
relationship | Relationship | |
title | String | |
firstName | String | |
legalFirstName | String | |
lastName | String | |
legalLastName | String | |
dateOfBirth | Date | |
phoneNumber | String | |
sex | BiologicalSex | |
joinDate | Date | |
address | Address |