# Alternate An alternate language URL for a resource, used for hreflang links. ## Type Definition ```graphql type Alternate { hreflang: String! path: String! url: String! } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | hreflang | String! | The hreflang code (e.g., "en", "fi", "x-default"). | | path | String! | The URL path for this language version. | | url | String! | The full URL for this language version. | ## Relationships The Alternate type is used to provide localized URL variants for resources. It contains string scalar values that represent language-specific routing information, enabling proper hreflang implementation for SEO and multi-language support. ## Example ```graphql { hreflang path url } ``` ## Implements None ## Related Types - `String`