Skip to main content

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!]!
}

Fields

PersonInterface.id ● ID! non-null scalar

PersonInterface.firstName ● String! non-null scalar

PersonInterface.lastName ● String! non-null scalar

PersonInterface.email ● String scalar

PersonInterface.photoUrl ● String scalar

PersonInterface.jobTitle ● String scalar

PersonInterface.secondJobTitle ● String scalar

PersonInterface.organization ● String scalar

PersonInterface.tags ● [String!]! non-null scalar

PersonInterface.biography ● String scalar

PersonInterface.phoneNumber ● String scalar

PersonInterface.phoneNumber.type ● PhoneNumberInputType enum

PersonInterface.websiteUrl ● String scalar

PersonInterface.address ● Address object

PersonInterface.socialNetworks ● [SocialNetwork!]! non-null object

Implemented By

Contact object ● User object