From e91509a3e1b91400beb7e442f90ef2b7d3a9c5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Ate=C5=9F=20Uzun?= Date: Mon, 20 Nov 2023 21:40:06 +0300 Subject: [PATCH] fix `GRAPH.EXPLAIN` - fix transform typo in `transformReply` --- packages/graph/lib/commands/EXPLAIN.ts | 2 +- packages/graph/lib/commands/PROFILE.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/graph/lib/commands/EXPLAIN.ts b/packages/graph/lib/commands/EXPLAIN.ts index 419ff62b11..ebea9ca900 100644 --- a/packages/graph/lib/commands/EXPLAIN.ts +++ b/packages/graph/lib/commands/EXPLAIN.ts @@ -6,4 +6,4 @@ export function transformArguments(key: string, query: string): Array { return ['GRAPH.EXPLAIN', key, query]; } -export declare function transfromReply(): Array; +export declare function transformReply(): Array; diff --git a/packages/graph/lib/commands/PROFILE.ts b/packages/graph/lib/commands/PROFILE.ts index 473c526e67..c964452f49 100644 --- a/packages/graph/lib/commands/PROFILE.ts +++ b/packages/graph/lib/commands/PROFILE.ts @@ -6,4 +6,4 @@ export function transformArguments(key: string, query: string): Array { return ['GRAPH.PROFILE', key, query]; } -export declare function transfromReply(): Array; +export declare function transformReply(): Array;