Huachao / vscode-restclient

REST Client Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=humao.rest-client
MIT License
5.22k stars 436 forks source link

Is jsonpath [*].value supported? #1029

Open gertjvr-jb opened 2 years ago

gertjvr-jb commented 2 years ago

Response Body

[
      {
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": 8.95
      },
      {
        "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": 8.99
      },
      {
        "category": "fiction",
        "author": "J.R.R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": 22.99
      }
]

@ids = {{search.response.body.$[*].isbn}}

The above variable is only return one value, was expecting an array, tried a few other JSONPath expressions like $[0:5].isbn but nothing seems to be returning an array of values

gertjvr-jb commented 2 years ago

Looks like there is an open PR to enable this https://github.com/Huachao/vscode-restclient/pull/853