This is my first time using graphQL with amplify, I've created schema for a app that has Users, Products type.
Now I want to create favorite schema type for users favorite project lists:
type Product @model {
id: ID!
name: String!
price: String!
tag: String!
}
type User @model {
id:ID!
name: String!
age: String!
email: String!
}