Skip to content

Commit 0c932b3

Browse files
committed
fixed import path in any schema
1 parent a817277 commit 0c932b3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/myzod/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
isListType,
2929
isNamedType,
3030
isNonNullType,
31-
} from './../graphql';
31+
} from '../graphql.js';
3232

3333
const anySchema = `definedNonNullAnySchema`;
3434

src/valibot/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
isListType,
2424
isNamedType,
2525
isNonNullType,
26-
} from './../graphql';
26+
} from '../graphql.js';
2727

2828
export class ValibotSchemaVisitor extends BaseSchemaVisitor {
2929
constructor(schema: GraphQLSchema, config: ValidationSchemaPluginConfig) {

src/yup/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
isListType,
2929
isNamedType,
3030
isNonNullType,
31-
} from './../graphql';
31+
} from '../graphql.js';
3232

3333
export class YupSchemaVisitor extends BaseSchemaVisitor {
3434
constructor(schema: GraphQLSchema, config: ValidationSchemaPluginConfig) {

src/zod/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
isListType,
2929
isNamedType,
3030
isNonNullType,
31-
} from './../graphql';
31+
} from '../graphql.js';
3232

3333
const anySchema = `definedNonNullAnySchema`;
3434

0 commit comments

Comments
 (0)