sdy

create first models.graphql

1 +type User {
2 + id: ID!
3 + name: String
4 + email: String
5 + profile: Profile
6 + createdAt: String
7 +}
8 +
9 +type Profile {
10 + id: ID!
11 + bio: String
12 + user: User
13 + createAt: String
14 +}