我想使用querybuilder搜索DAM文件夹中的文件。在我的测试文件夹中,我有1个.pptx文件(PowerPoint)和1个.png文件(图像)。
但是当我运行以下查询时,我得到3个结果:
1. <PPTX file>/jcr:content
2. <PPTX file>.jcr:content/subassets/slide1/jcr:content
3 <image file>/jcr:content
查询为:
path=/content/dam/my-folder
type=dam:AssetContent
p.limit=-1
是否有其他谓词可将其限制为2个结果(仅文件)?
我尝试过"type=dam:Asset"
,但结果为0。 "type=nt:base"
给出20个结果
答案 0 :(得分:4)
您要查找的是谓词mainasset
。在查询中指定mainasset=true
时,它将忽略结果中的子资产。因此,您只需搜索类型dam:Asset
并指定mainasset
谓词,如下所示。
path=/content/dam/my-folder
type=dam:Asset
mainasset=true
p.limit=-1
有关AEM中可用谓词列表的更多信息,请参阅此user guide。
答案 1 :(得分:0)
低于AEM 6.3-
使用path.flat
谓词将搜索范围缩小到仅直子而不是subtree
。
path=/content/dam/we-retail/en/mahna
path.flat=true
type=dam:AssetContent
您还可以使用nodename
谓词查询具有特定文件扩展名的节点名称
path=/content/dam/we-retail/en/mahna
type=dam:Asset
group.1_nodename=*.pptx
group.2_nodename=*.JPG
group.p.or=true