Files
animethemes-server/graphql/Models/User/like.graphql
T

8 lines
204 B
GraphQL

"Represents a like of a user."
type Like {
user: User! @belongsTo
likeable: LikeableUnion! @morphTo
}
"Represents the resources that can be liked"
union LikeableUnion = AnimeThemeEntry | Playlist