From 8f40d4c31828d01a4f7bdaccfe3684553e74880d Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Thu, 6 Jul 2023 11:53:59 -0500 Subject: [PATCH 1/5] Export sdlToIntrospection --- src/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.tsx b/src/index.tsx index 18d507c5..c900f7c1 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,2 +1,3 @@ export { Voyager, type VoyagerProps } from './components'; export { voyagerIntrospectionQuery } from './utils/introspection-query'; +export { sdlToIntrospection } from './utils/sdlToIntrospection'; From 3a8781536c30ea769d290c3bf254b71e78f03ecb Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Thu, 6 Jul 2023 11:57:35 -0500 Subject: [PATCH 2/5] fix path --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index c900f7c1..1d375b87 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,3 +1,3 @@ export { Voyager, type VoyagerProps } from './components'; export { voyagerIntrospectionQuery } from './utils/introspection-query'; -export { sdlToIntrospection } from './utils/sdlToIntrospection'; +export { sdlToIntrospection } from './utils/sdl-to-introspection'; From c64389f6a8f0d2e476c234353641ef6380add7f3 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Fri, 1 Sep 2023 10:19:29 -0500 Subject: [PATCH 3/5] update for 2.0 --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 1d375b87..d4ef941a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,3 +1,3 @@ export { Voyager, type VoyagerProps } from './components'; export { voyagerIntrospectionQuery } from './utils/introspection-query'; -export { sdlToIntrospection } from './utils/sdl-to-introspection'; +export { sdlToSchema } from './utils/sdl-to-introspection'; From 7868ee9375174402faae8b011721deab899d14ad Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Mon, 25 Sep 2023 11:11:00 -0500 Subject: [PATCH 4/5] Rename index.tsx to index.ts --- src/{index.tsx => index.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{index.tsx => index.ts} (100%) diff --git a/src/index.tsx b/src/index.ts similarity index 100% rename from src/index.tsx rename to src/index.ts From 5a451d1ad564ff811ac7751e030f736c33fc133a Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Mon, 25 Sep 2023 11:12:07 -0500 Subject: [PATCH 5/5] fix import --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 51170832..054e3913 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,3 @@ export { default as Voyager, type VoyagerProps } from './components/Voyager'; -export { voyagerIntrospectionQuery } from './utils/introspection-query +export { voyagerIntrospectionQuery } from './utils/introspection-query'; export { sdlToSchema } from './utils/sdl-to-introspection';