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 495e46d commit 448800bCopy full SHA for 448800b
src/Collection.php
@@ -939,6 +939,18 @@ public function insertOne(array $document)
939
return new InsertOneResult($wr, $id);
940
}
941
942
+ /**
943
+ * Returns information for all indexes in the collection.
944
+ *
945
+ * @see http://docs.mongodb.org/manual/reference/command/listIndexes/
946
+ * @see http://docs.mongodb.org/manual/reference/method/db.collection.getIndexes/
947
+ * @return Result
948
+ */
949
+ public function listIndexes()
950
+ {
951
+ // TODO
952
+ }
953
+
954
/**
955
* Replace one document
956
*
0 commit comments