From 35ee698e7a92342711efe84967df0056a5431757 Mon Sep 17 00:00:00 2001 From: Aenimus <47415099+Aenimus@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:53:20 +0100 Subject: [PATCH] fix: match option ref to -edg flag (#858) --- cli/src/commands/subgraph/commands/create.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/subgraph/commands/create.ts b/cli/src/commands/subgraph/commands/create.ts index 2c83c01a0e..2c0d5e8449 100644 --- a/cli/src/commands/subgraph/commands/create.ts +++ b/cli/src/commands/subgraph/commands/create.ts @@ -87,7 +87,7 @@ export default (opts: BaseCommandOptions) => { ? parseGraphQLWebsocketSubprotocol(options.websocketSubprotocol) : undefined, readme: readmeFile ? await readFile(readmeFile, 'utf8') : undefined, - isEventDrivenGraph: !!options.isEventDrivenGraph, + isEventDrivenGraph: !!options.eventDrivenGraph, }, { headers: getBaseHeaders(),