@pothos/plugin-sub-graph
Advanced tools
Comparing version 3.3.0 to 3.4.0
# Change Log | ||
## 3.4.0 | ||
### Minor Changes | ||
- a8e31a70: Improve user experience when srtict mode is disabled | ||
## 3.3.0 | ||
@@ -4,0 +10,0 @@ |
@@ -37,3 +37,3 @@ import { FieldNullability, InputFieldMap, InterfaceParam, RootName, SchemaTypes, TypeParam } from '@pothos/core'; | ||
interface ExtendDefaultTypes<PartialTypes extends Partial<UserSchemaTypes>> { | ||
SubGraphs: PartialTypes['SubGraphs'] extends string ? PartialTypes['SubGraphs'] : string; | ||
SubGraphs: PartialTypes['SubGraphs'] & string; | ||
} | ||
@@ -40,0 +40,0 @@ } |
{ | ||
"name": "@pothos/plugin-sub-graph", | ||
"version": "3.3.0", | ||
"version": "3.4.0", | ||
"description": "A Pothos plugin for creating multiple variants or sub-selections of the same graph", | ||
@@ -40,3 +40,3 @@ "main": "./lib/index.js", | ||
"devDependencies": { | ||
"@pothos/core": "3.5.1", | ||
"@pothos/core": "3.6.0", | ||
"@pothos/test-utils": "1.1.0", | ||
@@ -43,0 +43,0 @@ "graphql": "16.3.0", |
@@ -69,5 +69,5 @@ /* eslint-disable @typescript-eslint/no-unused-vars */ | ||
export interface ExtendDefaultTypes<PartialTypes extends Partial<UserSchemaTypes>> { | ||
SubGraphs: PartialTypes['SubGraphs'] extends string ? PartialTypes['SubGraphs'] : string; | ||
SubGraphs: PartialTypes['SubGraphs'] & string; | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
173081