So i have one json data that contain field name of model as json key with value. i want to run orm query and define field name on run time.
Ex:
json_data = {"postgres_id":"10"}
query = AcronymSecurityControlMaster.objects.get(postgres_id=10)
json_data = {"age":"10"}
query = AcronymSecurityControlMaster.objects.get(age=10)