Skip to content

Commit 6d527ee

Browse files
committed
Use type imports
1 parent 94be291 commit 6d527ee

5 files changed

+5
-6
lines changed

src/PgConnectionArgFilterAttributesPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type {
22
PgCodecWithAttributes,
33
PgConditionCapableParent,
44
} from "@dataplan/pg";
5-
import { GraphQLInputObjectType } from "graphql";
5+
import type { GraphQLInputObjectType } from "graphql";
66

77
const { version } = require("../package.json");
88

src/PgConnectionArgFilterBackwardRelationsPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
PgResource,
77
} from "@dataplan/pg";
88
import { makeAssertAllowed } from "./utils";
9-
import { GraphQLInputObjectType } from "graphql";
9+
import type { GraphQLInputObjectType } from "graphql";
1010

1111
const { version } = require("../package.json");
1212

src/PgConnectionArgFilterCompositeTypeAttributesPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { PgCodecAttributes, PgCodecWithAttributes } from "@dataplan/pg";
2-
import { GraphQLInputObjectType } from "graphql";
2+
import type { GraphQLInputObjectType } from "graphql";
33

44
const { version } = require("../package.json");
55

src/PgConnectionArgFilterComputedAttributesPlugin.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import {
33
getComputedAttributeResources,
44
isComputedScalarAttributeResource,
55
} from "./utils";
6-
import type { FieldArgs } from "grafast";
7-
import { GraphQLInputObjectType } from "graphql";
6+
import type { GraphQLInputObjectType } from "graphql";
87

98
const { version } = require("../package.json");
109

src/PgConnectionArgFilterForwardRelationsPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
PgResource,
77
} from "@dataplan/pg";
88
import { makeAssertAllowed } from "./utils";
9-
import { GraphQLInputObjectType } from "graphql";
9+
import type { GraphQLInputObjectType } from "graphql";
1010

1111
const { version } = require("../package.json");
1212

0 commit comments

Comments
 (0)