OBJECT
Contact
A company contact
link GraphQL Schema definition
1 type Contact { 2 3 # The ID of the contact. (Not a CodeSignal user ID.) 4 ID! : 5 6 # This contact's full name. 7 String! : 8 9 # The contact's primary email address. 10 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. 16 ContactStatus! : 17 18 # The user account associated with this company contact, if one exists. 19 # 20 # - Cost complexity: 1 21 User : 22 23 # The teams to which this contact belongs. 24 Team]! : [ 25 26 # Timestamp of this user's last visit to the platform. 27 Timestamp : 28 29 }