# 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 represents alternate language versions of a resource. It contains hreflang metadata and corresponding URL information for different language variants, enabling proper SEO and internationalization support through hreflang link annotations. ## Example ```graphql { hreflang path url } ``` ## Implements None ## Related Types - `String`