Skip to content

Commit

Permalink
fix: graph_ref -> graphref
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Jul 22, 2021
1 parent aba1d85 commit 9bc37ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/command/supergraph/compose/do_compose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub(crate) fn get_subgraph_definitions(
subgraphs.push(subgraph_definition);
}
SchemaSource::Subgraph {
graph_ref,
graphref: graph_ref,
subgraph,
} => {
// given a graph_ref and subgraph, run subgraph fetch to
Expand Down
2 changes: 1 addition & 1 deletion src/command/supergraph/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub(crate) struct Subgraph {
pub(crate) enum SchemaSource {
File { file: Utf8PathBuf },
SubgraphIntrospection { subgraph_url: Url },
Subgraph { graph_ref: String, subgraph: String },
Subgraph { graphref: String, subgraph: String },
}

#[cfg(feature = "composition-js")]
Expand Down

0 comments on commit 9bc37ec

Please sign in to comment.