something like: ```const account = await prisma.us...
# prisma-client
j
something like:
Copy code
const account = await prisma.user.findFirst({
  where: {
    _reqId: 'example-here',
    id: 1,
  },
});
then
Copy code
const reqIdMiddleware = async (params, next) => {
  if (params?.args?.where['_reqId']) {
    console.log('_reqId was found!', params.args.where['_reqId']);
    delete params.args.where['_reqId'];
  }
  return next(params)
};

prisma.$use(reqIdMiddleware);