prisma-cache-nosql
Version:
<div> <a href="https://www.npmjs.com/package/prisma-cache-nosql"> <img alt="npm" src="https://img.shields.io/npm/v/prisma-cache-nosql?logo=npm&logoColor=white"> </a> <a href="https://github.com/BearToCode/prisma-cache-nosql/blob/master/LICENSE"> <i
24 lines (22 loc) • 422 B
JavaScript
/**
* Default cache options for all queries.
*/
const DefaultCacheConfig = {
set: false,
get: false
};
/**
* Supported operations for caching.
*/
const SupportedOperations = [
'findUnique',
'findUniqueOrThrow',
'findFirst',
'findFirstOrThrow',
'findMany',
'count',
'aggregate',
'groupBy'
];
export { DefaultCacheConfig, SupportedOperations };
//# sourceMappingURL=types.js.map