We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bdc003 commit 407e59eCopy full SHA for 407e59e
server/graphman/src/resolvers/deployment_mutation.rs
@@ -85,14 +85,14 @@ impl DeploymentMutation {
85
pub async fn create(&self, ctx: &Context<'_>, name: String) -> Result<EmptyResponse> {
86
let ctx = GraphmanContext::new(ctx)?;
87
create::run(&ctx, &name)?;
88
- Ok(EmptyResponse::new(None))
+ Ok(EmptyResponse::new())
89
}
90
91
/// Remove a subgraph
92
pub async fn remove(&self, ctx: &Context<'_>, name: String) -> Result<EmptyResponse> {
93
94
remove::run(&ctx, &name)?;
95
96
97
98
/// Unassign a deployment
0 commit comments