Search code examples
aemquery-builderjcr

QueryBuilder Search for jcr:lastModifiedBy


I have to search for the value of jcr:lastModifiedBy in AEMJCR data

I have to search under page which has a jcr:content under which we have components which have a property jcr:lastModifiedBy. Please help


Solution

  • Probably this should do the job:

    path=/content//jcr:content
    type=nt:unstructured
    property=jcr:lastModifiedBy
    property.value=admin
    

    You can test also your query builder queries also here.