models.graphql 168 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 type User { id: ID! name: String email: String profile: Profile createdAt: String } type Profile { id: ID! bio: String user: User createAt: String }