From 2148dea982fb908fc2bfa7ba6256b6cfec6e476d Mon Sep 17 00:00:00 2001 From: Gideon le Grange Date: Mon, 30 Dec 2013 17:59:54 +0200 Subject: [PATCH] Small cleanup in readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) 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