Closed shenek closed 4 years ago
Normal Simple matcher matches the only from start e.g.
{"users"}[]{"name"}
will match paths like this
{"users"}[0]{"name"} {"users"}[1]{"name"} ...
Reversed partial matcher would match like this
[]{"name"}
{"users"}[0]{"name"} {"users"}[1]{"name"} ... {"groups"}[0]{"name"}
Probably it might be more beneficial to extend simple matcher with * a.k.a. wildcard match.
*
And perhaps ? would be also useful.
?
Normal Simple matcher matches the only from start e.g.
will match paths like this
Reversed partial matcher would match like this