1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00
Files
node-redis/packages/graph/lib/commands/RO_QUERY.ts
2024-11-04 12:21:17 -05:00

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;