-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #383 from PlagueHO/Issue-370
Added Get-CosmosDbDocumentJson function - Fixes #370
- Loading branch information
Showing
15 changed files
with
868 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ schema: 2.0.0 | |
|
||
## SYNOPSIS | ||
|
||
Return the documents for a Cosmos DB database collection. | ||
Return documents from a Cosmos DB database collection. | ||
|
||
## SYNTAX | ||
|
||
|
@@ -41,7 +41,7 @@ This cmdlet will return the documents for a specified collection in a | |
Cosmos DB database. If an Id is specified then only the specified | ||
documents will be returned. | ||
|
||
A maxiumum of 100 document will be returned if an Id is not | ||
A maximum of 100 document will be returned if an Id is not | ||
specified. To retrieve more than 100 documents a continuation | ||
token will need to be used. | ||
|
||
|
@@ -82,7 +82,7 @@ PS C:\> $query = "SELECT * FROM customers c WHERE (c.id = '[email protected]')" | |
PS C:\> Get-CosmosDbDocument -Context $cosmosDbContext -CollectionId 'MyNewCollection' -Query $query | ||
``` | ||
|
||
Querying the documents in a collection. | ||
Query the documents in a collection. | ||
|
||
### Example 5 | ||
|
||
|
Oops, something went wrong.