From c094866a337998d3505b46b4a7738e2012e5a40a Mon Sep 17 00:00:00 2001 From: Paul Rock Date: Wed, 24 Jul 2019 11:25:09 +0300 Subject: [PATCH] yet another query example --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 688943a..654142c 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,11 @@ $query = ->where('type', 'ether') ->where('type', 'vlan') ->operations('|'); + +/// Get all routes that have non-empty comment +$query = + (new Query('/ip/route/print')) + ->where('comment', '>', null); ```