OBJECT
InterviewTemplate
An interview template defines a set of tasks relevant for a specialized interview
link GraphQL Schema definition
1 type InterviewTemplate { 2 3 # Interview template ID. 4 ID! : 5 6 # Name of the template. 7 String : 8 9 # List of the Task IDs. 10 # 11 # - Cost complexity: 1 12 Task] : [ 13 14 # The author's user ID. 15 # 16 # - Cost complexity: 1 17 User : 18 19 # The team that the template is associated with 20 # 21 # - Cost complexity: 1 22 Team : 23 24 # If the current user has permission to edit/delete this template 25 Boolean : 26 27 }