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 167497d commit fdc5744Copy full SHA for fdc5744
index.d.ts
@@ -18,7 +18,7 @@ declare module 'apollo-datasource-mongodb' {
18
: Collection<T>
19
20
export interface Fields {
21
- [fieldName: string]: string | number | boolean | [string | number | boolean]
+ [fieldName: string]: string | number | boolean | (string | number | boolean)[]
22
}
23
24
export interface Options {
@@ -51,4 +51,4 @@ declare module 'apollo-datasource-mongodb' {
51
52
deleteFromCacheById(id: ObjectId | string): Promise<void>
53
54
-}
+}
0 commit comments