mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 03:05:01 +02:00
8 lines
204 B
GraphQL
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 |