sdy

create first models.graphql

type User {
id: ID!
name: String
email: String
profile: Profile
createdAt: String
}
type Profile {
id: ID!
bio: String
user: User
createAt: String
}