# Interest
This model is used to store interests of a user with their predicted score value.
Properties you would find in the token model are:
interest required
- Contains interest keyword
score required
- Contains the score for the interest
- This is a float in the domain (-1,1), where -1 means maximum dislike and 1 means maximum like.
uid required
- An integer value that uniquely identifies the user in which the interest belong to.
# Graphql Schema
The gql schema for this model is defined as:
type Interest {
interest: String,
score: Float,
uid: Int
}
1
2
3
4
5
2
3
4
5