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 e7f41df commit ab22adeCopy full SHA for ab22ade
render-ws-with-mongo-db/list-match-collections.sh
@@ -2,4 +2,4 @@
2
3
OWNER="${1:-hess_wafers_60_61}"
4
URL="http://localhost:8080/render-ws/v1/owner/${OWNER}/matchCollections"
5
-curl -X GET --silent --header 'Accept: application/json' "${URL}" | jq '.'
+curl -X GET --silent --header 'Accept: application/json' "${URL}" | jq -r '.[] | "\(.collectionId.name)"' | sort
render-ws-with-mongo-db/list-stacks.sh
@@ -3,4 +3,4 @@
PROJECT="${2:-w60_serial_360_to_369}"
URL="http://localhost:8080/render-ws/v1/owner/${OWNER}/project/${PROJECT}/stackIds"
6
+curl -X GET --silent --header 'Accept: application/json' "${URL}" | jq -r '.[] | "\(.stack)"' | sort
0 commit comments