When including the body in the mock, is there a way to only include a partial match on a single field? For example, if the full request body is something like this:
{
"item": "00001",
"color": "blue",
"model" "X"
}
but I want the mock to only match on a single field like "item" and ignore whatever is in the remaining fields:
When including the body in the mock, is there a way to only include a partial match on a single field? For example, if the full request body is something like this:
but I want the mock to only match on a single field like "item" and ignore whatever is in the remaining fields:
Is this possible with ng-apimock or do I need to include the full request body in the mock?