Skip to content

Commit 194664d

Browse files
authored
Update postman_collection.json
Change the way wildcarding is expressed.
1 parent 5f6b16b commit 194664d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docker/postman/postman_collection.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3631,7 +3631,7 @@
36313631
"method": "GET",
36323632
"header": [],
36333633
"url": {
3634-
"raw": "{{baseUrl}}/products?q=(\".*logical_identifier\" exists)",
3634+
"raw": "{{baseUrl}}/products?q=(*logical_identifier exists)",
36353635
"host": [
36363636
"{{baseUrl}}"
36373637
],
@@ -3641,7 +3641,7 @@
36413641
"query": [
36423642
{
36433643
"key": "q",
3644-
"value": "(\".*logical_identifier\" exists)",
3644+
"value": "(logical_identifier exists)",
36453645
"description": "find all documents, which should be all, that have a logical identifier defined"
36463646
}
36473647
]
@@ -3732,7 +3732,7 @@
37323732
"method": "GET",
37333733
"header": [],
37343734
"url": {
3735-
"raw": "{{baseUrl}}/products?q=(\".*illogical_identifier\" exists)",
3735+
"raw": "{{baseUrl}}/products?q=(illogical_identifier exists)",
37363736
"host": [
37373737
"{{baseUrl}}"
37383738
],
@@ -3742,7 +3742,7 @@
37423742
"query": [
37433743
{
37443744
"key": "q",
3745-
"value": "(\".*illogical_identifier\" exists)"
3745+
"value": "(illogical_identifier exists)"
37463746
}
37473747
]
37483748
}
@@ -3830,7 +3830,7 @@
38303830
"method": "GET",
38313831
"header": [],
38323832
"url": {
3833-
"raw": "{{baseUrl}}/products?q=not (\".*illogical_identifier\" exists)",
3833+
"raw": "{{baseUrl}}/products?q=not (illogical_identifier exists)",
38343834
"host": [
38353835
"{{baseUrl}}"
38363836
],
@@ -3840,7 +3840,7 @@
38403840
"query": [
38413841
{
38423842
"key": "q",
3843-
"value": "not (\".*illogical_identifier\" exists)"
3843+
"value": "not (illogical_identifier exists)"
38443844
}
38453845
]
38463846
}
@@ -4804,4 +4804,4 @@
48044804
"type": "string"
48054805
}
48064806
]
4807-
}
4807+
}

0 commit comments

Comments
 (0)