From 03c0cb120dc3773641d893f76cd7f8e89137b4ab Mon Sep 17 00:00:00 2001 From: Coby Date: Thu, 21 Nov 2024 15:42:55 -0500 Subject: [PATCH] fix imports --- src/resolvers-types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resolvers-types.ts b/src/resolvers-types.ts index 951d1a3..486779e 100644 --- a/src/resolvers-types.ts +++ b/src/resolvers-types.ts @@ -1,6 +1,6 @@ -import { BlockStatusFilter } from './blockchain/types'; +import { BlockStatusFilter } from './blockchain/types.js'; import { GraphQLResolveInfo } from 'graphql'; -import { GraphQLContext } from './context'; +import { GraphQLContext } from './context.js'; export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = {