python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Cosmos query to fetch only specific inner array items that meets specific condition
In cosmos DB the document structure is like this
[
{
"id": "1",
"Plants": [
{
"PlantId": 3,
"UniqueQualityId": "3...
user4010
Votes: 0
Answers: 1
COSMOS DB Unique index constraint violation after item was removed by TTL
I am creating a distributed lock library using azure-spring-boot-starter-cosmos
My library has two methods: public void lockResource(String resourceUniqueIdentifier) and
public void unlockResource(S...
skorpyo
Votes: 0
Answers: 1
Sorting on a potentially Null value from Cosmos
I am looking to do sorting on Last updated date on a table that contains all of my user requests but the issue is this property was only recently added to the request model as it was previously pulled...
RoryF
Votes: 0
Answers: 0
Cosmos DB - SQL - Get All Unique Array Items and a count
I have a cosmos db made up of items such as
{
"id": 1
"countries": [
"Australia",
"New Zealand"
]
},
{
"id": 2
"coun...
dktcaine
Votes: 0
Answers: 1