I have a web application in which I am giving role based data access to the user,I use the concept of XACML based reverse querying, i.e
"A user want to access resource xyz, so under what condition he is allowed to do so?"
So, my question is how feasible it will be if I do not filter the data based on the policy in the server, instead push all data along with the policy to the client and let client handle the filtering the data, I wanted to do this because my server is a cloud based server and I do not want to put any computational overload in it, so wanted to know is their any drawback if I go with such approach?