We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5cccd commit 89a9fd7Copy full SHA for 89a9fd7
.flowconfig
@@ -3,6 +3,8 @@
3
.*/__mocks__/.*
4
.*/coverage/.*
5
.*/resources/.*
6
+<PROJECT_ROOT>/lib/.*
7
+<PROJECT_ROOT>/dist/.*
8
9
[include]
10
src/definition.js
@@ -57,7 +57,7 @@ export type ResolverNames = 'findById' | 'findByIds' | 'findOne' | 'findMany' |
57
export type MongooseQuery = {
58
exec(): Promise<any>,
59
where(criteriaOrFieldName: ObjectMap | string): MongooseQuery,
60
- where(fieldName: string, equalTo: string): MongooseQuery,
+ // where(fieldName: string, equalTo: string): MongooseQuery,
61
skip(num: number): MongooseQuery,
62
limit(num: number): MongooseQuery,
63
select(projection: ObjectMap): MongooseQuery,
0 commit comments