You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Since 4.0: If true, will only return the collection name in the response, and will omit additional info */
17
17
nameOnly?: boolean;
18
+
/** Since 4.0: If true and nameOnly is true, allows a user without the required privilege (i.e. listCollections action on the database) to run the command when access control is enforced. */
19
+
authorizedCollections?: boolean;
18
20
/** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */
19
21
batchSize?: number;
20
22
}
@@ -25,6 +27,7 @@ export class ListCollectionsOperation extends CommandOperation<string[]> {
0 commit comments