diff --git a/crates/rover-client/src/query/subgraph/fetch.rs b/crates/rover-client/src/query/subgraph/fetch.rs index edf28990f..135c3df75 100644 --- a/crates/rover-client/src/query/subgraph/fetch.rs +++ b/crates/rover-client/src/query/subgraph/fetch.rs @@ -16,8 +16,7 @@ use graphql_client::*; /// Snake case of this name is the mod name. i.e. fetch_subgraph_query pub struct FetchSubgraphQuery; -/// The main function to be used from this module. This function fetches a -/// schema from apollo studio and returns it in either sdl (default) or json format +/// Fetches a schema from apollo studio and returns its SDL (String) pub fn run( variables: fetch_subgraph_query::Variables, client: &StudioClient, diff --git a/crates/rover-client/src/query/subgraph/mod.rs b/crates/rover-client/src/query/subgraph/mod.rs index 838b0c6a8..f272b77dd 100644 --- a/crates/rover-client/src/query/subgraph/mod.rs +++ b/crates/rover-client/src/query/subgraph/mod.rs @@ -5,4 +5,4 @@ pub mod push; pub mod delete; /// "subgraph fetch" command execution -pub mod fetch; \ No newline at end of file +pub mod fetch;