Skip to content

Commit

Permalink
Merge branch 'main' into avery/add-router-config-to-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Dec 16, 2022
2 parents 8c8ff86 + f41e089 commit d138863
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/rover-client/.schema/last_run.uuid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/rover-client/src/operations/graph/check/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl From<CheckSchemaAsyncInput> for MutationVariables {
graph_id: input.graph_ref.name,
name: input.graph_ref.variant,
input: MutationInput {
graph_ref: graph_ref.to_string(),
graph_ref: Some(graph_ref.to_string()),
proposed_schema_document: Some(input.proposed_schema),
git_context: input.git_context.into(),
config: input.config.into(),
Expand Down
2 changes: 1 addition & 1 deletion crates/rover-client/src/operations/subgraph/check/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ impl From<SubgraphCheckAsyncInput> for MutationVariables {
graph_id: input.graph_ref.name,
name: input.graph_ref.variant,
input: MutationInput {
graph_ref: graph_ref.to_string(),
graph_ref: Some(graph_ref.to_string()),
proposed_schema: input.proposed_schema,
git_context: input.git_context.into(),
config: input.config.into(),
Expand Down

0 comments on commit d138863

Please sign in to comment.