github.com/oinume/lekcije@v0.0.0-20231017100347-5b4c5eb6ab24/backend/interface/graphql/schema/user.graphqls (about) 1 type User { 2 id: ID! 3 email: String! 4 followingTeachers( 5 first: Int = 20, 6 after: String, 7 last: Int = 20, 8 before: String 9 ): FollowingTeacherConnection! 10 notificationTimeSpans: [NotificationTimeSpan!]! 11 showTutorial: Boolean! 12 }