You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
import { Command } from '@redis/client/dist/lib/RESP/types';
|
|
import QUERY, { parseQueryArguments } from './QUERY';
|
|
|
|
export default {
|
|
IS_READ_ONLY: true,
|
|
parseCommand: parseQueryArguments.bind(undefined, 'GRAPH.RO_QUERY'),
|
|
transformReply: QUERY.transformReply
|
|
} as const satisfies Command;
|