-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# $schema: ../schema.json | ||
name: $elemMatch | ||
category: | ||
- 'Projection Operators' | ||
link: 'https://www.mongodb.com/docs/manual/reference/operator/projection/elemMatch/' | ||
type: | ||
- projection | ||
encode: object | ||
description: | | ||
Projects the first element in an array that matches the specified $elemMatch condition. | ||
arguments: | ||
- | ||
name: query | ||
type: | ||
- query |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# $schema: ../schema.json | ||
name: $elemMatch | ||
category: | ||
- 'Projection Operators' | ||
- 'Array Query Operators' | ||
link: 'https://www.mongodb.com/docs/manual/reference/operator/query/elemMatch/' | ||
type: | ||
- filter | ||
- projection | ||
encode: object | ||
description: | | ||
Projects the first element in an array that matches the specified $elemMatch condition. | ||
The $elemMatch operator matches documents that contain an array field with at least one element that matches all the specified query criteria. | ||
arguments: | ||
- | ||
name: queries | ||
name: query | ||
type: | ||
- query |
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace MongoDB\Builder; | ||
|
||
use MongoDB\Builder\Projection\FactoryTrait; | ||
|
||
enum Projection | ||
{ | ||
use FactoryTrait; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.