diff --git a/README.md b/README.md index 1027933..fe489e3 100644 --- a/README.md +++ b/README.md @@ -54,12 +54,16 @@ for (Map r : rs) { } ``` +### Filtering results + The same query, but with the results filtered: Print all interfaces of type 'vlan'. ```java List> rs = con.execute("/interface/print where type=vlan"); ``` +### Selecting returned fields + The same query, but we only want certain result fields names Print all interfaces of type 'vlan' and return their name. ```java