Skip to content

Commit 4a77db7

Browse files
Michael Edelmantimsuchanek
Michael Edelman
authored andcommittedJul 16, 2018
fix: duplicate Prisma export in flow generator (#189)
1 parent 7466b6a commit 4a77db7

4 files changed

+1635
-49
lines changed
 

‎src/PrismaFlowGenerator.test.js.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ Generated by [AVA](https://ava.li).
1111
`/**␊
1212
* @flow␊
1313
*/␊
14-
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'␊
15-
import { IResolvers } from 'graphql-tools/dist/Interfaces'␊
16-
import { Options } from 'graphql-binding'␊
14+
import type { GraphQLResolveInfo, GraphQLSchema } from 'graphql'␊
15+
import type { IResolvers } from 'graphql-tools/dist/Interfaces'␊
16+
import type { Options } from 'graphql-binding'␊
17+
import type { BasePrismaOptions as BPOType } from 'prisma-binding'␊
1718
import { makePrismaBindingClass, BasePrismaOptions } from 'prisma-binding'␊
1819
1920
export interface Query {␊
@@ -51,7 +52,7 @@ Generated by [AVA](https://ava.li).
5152
User(where?: UserWhereInput): Promise<boolean>;␊
5253
}␊
5354
54-
export interface Prisma {␊
55+
interface Prisma {␊
5556
query: Query;␊
5657
mutation: Mutation;␊
5758
subscription: Subscription;␊
@@ -67,7 +68,7 @@ Generated by [AVA](https://ava.li).
6768
}␊
6869
6970
export interface BindingConstructor<T> {␊
70-
new(options: BasePrismaOptions): T␊
71+
new(options: BPOType): T␊
7172
}␊
7273
/**␊
7374
* Type Defs␊
@@ -783,7 +784,9 @@ Generated by [AVA](https://ava.li).
783784
}␊
784785
`␊
785786
786-
export const Prisma: BindingConstructor<Prisma> = makePrismaBindingClass({typeDefs})␊
787+
const prisma: BindingConstructor<Prisma> = makePrismaBindingClass({typeDefs})␊
788+
export { prisma as Prisma } ␊
789+
787790
788791
/**␊
789792
* Types␊

‎src/PrismaFlowGenerator.test.js.snap

32 Bytes
Binary file not shown.

‎src/PrismaFlowGenerator.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface Subscription ${this.renderSubscriptions()}
2121
2222
export interface Exists ${this.renderExists()}
2323
24-
export interface Prisma {
24+
interface Prisma {
2525
query: Query;
2626
mutation: Mutation;
2727
subscription: Subscription;
@@ -37,7 +37,7 @@ getAbstractResolvers(filterSchema?: GraphQLSchema | string): IResolvers;
3737
}
3838
3939
export interface BindingConstructor<T> {
40-
new(options: BasePrismaOptions): T
40+
new(options: BPOType): T
4141
}
4242
/**
4343
* Type Defs
@@ -55,13 +55,17 @@ ${this.renderTypes()}`
5555
}
5656
renderImports() {
5757
return `\
58-
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'
59-
import { IResolvers } from 'graphql-tools/dist/Interfaces'
60-
import { Options } from 'graphql-binding'
58+
import type { GraphQLResolveInfo, GraphQLSchema } from 'graphql'
59+
import type { IResolvers } from 'graphql-tools/dist/Interfaces'
60+
import type { Options } from 'graphql-binding'
61+
import type { BasePrismaOptions as BPOType } from 'prisma-binding'
6162
import { makePrismaBindingClass, BasePrismaOptions } from 'prisma-binding'`
63+
6264
}
6365
renderExports() {
64-
return `export const Prisma: BindingConstructor<Prisma> = makePrismaBindingClass({typeDefs})`
66+
return `const prisma: BindingConstructor<Prisma> = makePrismaBindingClass({typeDefs})
67+
export { prisma as Prisma }
68+
`
6569
}
6670
renderTypedefs() {
6771
return (

‎yarn.lock

+1,616-37
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.