Skip to content

Commit 98fcca4

Browse files
committedMay 17, 2018
fix(schema): support import syntax upon codegen
Right now, related .graphql files are not imported into the schema when we run `graphql codegen`. It is due to the missing importSchema in bin.ts. fix: #168
1 parent b896546 commit 98fcca4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/bin.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import * as path from 'path'
77
import { PrismaGenerator } from './PrismaGenerator'
88
import { PrismaTypescriptGenerator } from './PrismaTypescriptGenerator'
99
import { buildSchema, printSchema } from 'graphql'
10+
import { importSchema } from 'graphql-import'
1011

1112
const argv = yargs
1213
.usage(`Usage: $0 -i [input] -g [generator] -b [outputBinding]`)
@@ -70,7 +71,7 @@ async function run(argv) {
7071

7172
function getSchemaFromInput(input) {
7273
if (input.endsWith('.graphql') || input.endsWith('.gql')) {
73-
return buildSchema(fs.readFileSync(input, 'utf-8'))
74+
return buildSchema(importSchema(input))
7475
}
7576

7677
if (input.endsWith('.js') || input.endsWith('.ts')) {

0 commit comments

Comments
 (0)
Please sign in to comment.