Hi,
no, that's not possible, but see also:
http://markmail.org/message/6d3dwdpev2si2zf6regards
marcel
Dan Diephouse wrote:
> We'd like users to be able to search for a node in our database using a
> suggest box type interface. So when they type in "/Foo/B" we can search
> through and find a node called "/Foo/Bar". Is there any way to search by
> path name? ideally something like:
>
> jcr:like(full-node-path(), '/Foo/B')
>
> Or do I have to parse out the various paths and construct some kind of query
> like
>
> //Foo/jcr:like(local-name(), 'B')
>
> (not sure if that syntax is exactly right, but you get the idea)
>
> Dan