PersonInterface
No description
interface PersonInterface {
id: ID!
firstName: String!
lastName: String!
email: String
photoUrl: String
jobTitle: String
secondJobTitle: String
organization: String
tags: [String!]!
biography: String
phoneNumber(
type: PhoneNumberInputType
): String
websiteUrl: String
address: Address
socialNetworks: [SocialNetwork!]!
}