Is it possible to create a “localization edge” in graphql? I think I have to use facets to create the concept of localization edge, right?
Furthermore, I use the “Localiation” concept also to localize other resources like “Where a particular distribution has been carried on” EG:
type Distribution implements Metadata {
"""
Episode, Anime, Manga, Volume, Chapter, ...
"""
content: Distributable! @hasInverse(field: distributions)
"""
Organization
"""
distributor: Organization @hasInverse(field: distributions)
"""
Stream, Broadcast, Publish, Air, ...
"""
type: DistributionType! @search(by: [hash])
from: Date
to: Date
"""
it_IT -> in italy in italian
en_US -> in america in english
....
"""
localization: Localization
}
So I’ll face the problem of filtering by a nested property anyway