Skip to content

Commit 9fcb89b

Browse files
committedMay 9, 2018
fix: undo colon change
1 parent 3d2f875 commit 9fcb89b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function getExistsTypes(queryType: GraphQLObjectType) {
99
const types = getTypesAndWhere(queryType)
1010
return types
1111
.map(
12-
({ type, where }) => ` ${type}(where?: ${where}) => Promise<boolean>`,
12+
({ type, where }) => ` ${type}: (where?: ${where}) => Promise<boolean>`,
1313
)
1414
.join('\n')
1515
}

0 commit comments

Comments
 (0)
Please sign in to comment.