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

49 lines
895 B
JSON

{
"priority": 5,
"request": {
"method": "POST",
"urlPath": "/graphql",
"headers": {
"Content-Type": {
"equalTo": "application/json"
}
},
"bodyPatterns": [
{
"contains": "bundleScope"
}
]
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"jsonBody": {
"data": {
"members": {
"results": [
{
"id": "wm_member_1",
"user": {
"id": "wm_subscriber"
}
}
]
},
"place": {
"results": [
{
"id": "wm_place",
"services": [
{ "id": "wm_s1", "title": "svc-1" },
{ "id": "wm_s2", "title": "svc-2" }
]
}
]
}
}
}
}
}