graphql_composition/
grafbase_extensions.rs

1/// A Grafbase extension registered for composition.
2#[derive(Debug)]
3pub struct LoadedExtension {
4    /// The URL of the extension, which can be a remote URL or a local file path.
5    pub link_url: String,
6    /// URL to use in the federated SDL.
7    pub url: url::Url,
8    /// The unique name of the extension.
9    pub name: String,
10}