I am using pact-python (0.10.0). I want to make a request to a provider with an entity id:
/entity/6000d04d-d5d6-4a5f-81d3-7d8a72b46174
but this (6000d04d-d5d6-4a5f-81d3-7d8a72b46174) should exist in the database.
what'd be the better solution:
Creating a provider state with the data present in it (but how will the provider verifier work? shouldn't the contract be having the id that's present in real provider?)
Query for all the id's in the database and pick one for making the request (for this I need to somehow update and publish pact with the fetched id)
Or is there any better solution available that i might have missed?