diff --git a/graph/model/zpa.go b/graph/model/zpa.go index 8e4a997..7e0c792 100644 --- a/graph/model/zpa.go +++ b/graph/model/zpa.go @@ -11,6 +11,7 @@ type Teacher struct { FK string `json:"fk"` ID int `json:"person_id"` Email string `json:"email"` + IsActive bool `json:"is_active"` } type ZPAExam struct { diff --git a/graph/zpa.graphqls b/graph/zpa.graphqls index 62f69c0..fdcfb72 100644 --- a/graph/zpa.graphqls +++ b/graph/zpa.graphqls @@ -84,4 +84,5 @@ type Teacher { fk: String! id: Int! email: String! + isActive: Boolean! }