-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Use dot notation instead of directory slash.
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ import type { | |
IFieldResolver, | ||
IResolvers, | ||
} from "https://cdn.skypack.dev/@graphql-tools/utils?dts"; | ||
import { sep } from "https://deno.land/[email protected]/path/mod.ts"; | ||
|
||
export type Callable = (...args: any[]) => any; | ||
|
||
|
@@ -43,7 +42,7 @@ export const fromManifest = < | |
if (!resolver) return; | ||
|
||
const resolverObj: IResolvers = {}; | ||
const pathSegments = name.split(sep); | ||
const pathSegments = name.split("."); | ||
const isSubscription = pathSegments[0] === "Subscription"; | ||
|
||
let currentPath = resolverObj; | ||
|