Skip to content

Commit

Permalink
chore: updates schema (#1457)
Browse files Browse the repository at this point in the history
ran `cargo xtask prep --schema-only` and fixed the compile errors
  • Loading branch information
EverlastingBugstopper authored Dec 16, 2022
1 parent b956a65 commit f41e089
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 21 deletions.
2 changes: 1 addition & 1 deletion crates/rover-client/.schema/hash.id

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/.schema/last_run.uuid

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

102 changes: 85 additions & 17 deletions crates/rover-client/.schema/schema.graphql

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 f41e089

Please sign in to comment.