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 06a8efc commit bd76841Copy full SHA for bd76841
crates/apollo-mcp-server/src/introspection/tools/execute.rs
@@ -246,24 +246,6 @@ mod tests {
246
}
247
248
249
- #[test]
250
- fn execute_query_err_with_subscription_when_mutation_mode_is_all() {
251
- let execute = Execute::new(MutationMode::All);
252
-
253
- let input = json!({
254
- "query": "subscription { user { id name } }",
255
- });
256
257
- assert_eq!(
258
- Executable::operation(&execute, input),
259
- Err(McpError::new(
260
- ErrorCode::INVALID_PARAMS,
261
- "Invalid operation type".to_string(),
262
- None
263
- ))
264
- );
265
- }
266
267
#[test]
268
fn execute_query_invalid_input() {
269
let execute = Execute::new(MutationMode::None);
0 commit comments