Skip to content

Latest commit

 

History

History

jmespath

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

jmespath

Provides functionality to perform a JMESPath query against a Smithy-Java Document.

Example Usage

Given a Document representing the JSON object {"foo": [1,2,3,4]}, all items in member foo greater than 2 could be queried as:

Document result = JMESPathDocumentQuery.query("foo[?@ > `2`]", myDocument);