Noob_test/Subscribe_to_bundle/wiremock/mappings/graphql-subscribe-bundle-create-places.json
2026-05-15 11:34:24 +03:00

27 lines
485 B
JSON

{
"priority": 10,
"request": {
"method": "POST",
"urlPath": "/graphql",
"bodyPatterns": [
{
"contains": "createPlaceMultiple"
}
]
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"jsonBody": {
"data": {
"createPlaceMultiple": [
{ "id": "wm_place_a", "__typename": "Place" },
{ "id": "wm_place_b", "__typename": "Place" }
]
}
}
}
}