From cb666256d526f118413f13e5e79a6c38c6eaf70d Mon Sep 17 00:00:00 2001 From: NeuralFlux <40491005+NeuralFlux@users.noreply.github.com> Date: Thu, 7 Nov 2024 16:06:57 -0500 Subject: [PATCH] chore: rename metakg_ops back to original --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index d71c7ab..81aa452 100644 --- a/src/index.ts +++ b/src/index.ts @@ -119,8 +119,8 @@ export default class TRAPIQueryHandler { })}`, ); - if (this.options.metakg_ops) { - const metaKG = new MetaKG(undefined, undefined, (this.options as any).metakg_ops); + if (this.options.metakg) { + const metaKG = new MetaKG(undefined, undefined, (this.options as any).metakg); metaKG.filterKG(this.options); return metaKG; }