From 8ac61821a458fcb1b58b6863467b0f74252c589a Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Sat, 19 Jul 2025 09:08:46 +0200 Subject: [PATCH] Updated Request Matching GraphQLMatcher (markdown) --- Request-Matching-GraphQLMatcher.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Request-Matching-GraphQLMatcher.md b/Request-Matching-GraphQLMatcher.md index 1e6181c..36b4068 100644 --- a/Request-Matching-GraphQLMatcher.md +++ b/Request-Matching-GraphQLMatcher.md @@ -69,7 +69,7 @@ server .WithPath("/graphql") .UsingPost() .WithGraphQLSchema(TestSchemaQueryStudentById) - .WithBody(new WildcardMatcher("\"sid\": \"1\"")) + .WithBody(new JsonPartialWildcardMatcher("{ \"variables\": { \"sid\": \"1\" } }")) ) .WithTitle("Student found") .RespondWith(Response.Create()