OBJECT

Contact

A company contact

link GraphQL Schema definition

1type Contact {
2
3# The ID of the contact. (Not a CodeSignal user ID.)
4id: ID!
5
6# This contact's full name.
7name: String!
8
9# The contact's primary email address.
10email: String!
11
12# The current status of this contact. Pending or expired means that they have not
13# accepted their invitation
14# to the company; active means that they have a user account linked to the
15# company.
16status: ContactStatus!
17
18# The user account associated with this company contact, if one exists.
19#
20# - Cost complexity: 1
21user: User
22
23# The teams to which this contact belongs.
24teams: [Team]!
25
26# Timestamp of this user's last visit to the platform.
27lastVisitDate: Timestamp
28
29}