I was looking into QueryBuilder API when I saw the ability to do advanced configuration:
http://localhost:4503/system/console/configMgr/com.day.cq.search.impl.builder.QueryBuilderImpl
Now I saw a lot of technical terms there and not sure about what exactly do they mean and how can I tweak them ...
I am using GQL API to fetch data from AEM. However I need to have logic like contains or doesn't contains in `_path`. I wanted to know if the same is supported in AEM through GQL APIs? Like for example I see CONTAINS, CONTAINS_NOT for other fields but not for the _path.
For the path, I only see EQUA...
I want to use GraphQL to query content fragments in specific folder location. Can I do it using GQL or would that only be possible in QueryBuilder API?
So I have a query like this:
query {
articlesList(variation:"spanish") {
items {
_path,
title,
}
}
}
This works fine but if I don't have a Spanish variation for a specific `Article` content fragment then it returns the master variation. However ideally I want it to r...
@lukasz-m
I am writing this query:
query {
articlesList(variation:"Spanish") {
items {
_path,
title,
}
}
}
but this still gives me master version only.
Okay a slight correction, your variation must be lower cased and spaces should be replaced with _ and then it sho...
Can someone brief me and help me decide which one to go with between AEM QueryBuilder Vs AEM GraphQL API?
I see that you have option of persistent queries in GraphQL do we have any caching options in QueryBuilder? How can we leverage it to the fullest?Would using QueryBuilder against GraphQL mean ...
I want to query in AEM and get all those records where a specific value exists:
type=cq:tag
path=/content/cq:tags/home
p.limit=12
p.offset=0
p.hits=selective
p.properties=jcr:title jcr:title.es
Here I want to query only those tags where `jcr:title.es` exists. How can I write the query for the s...
thank you very much @Saravanan_Dharmaraj I know we can do it via queryBuilder however I was checking for the possibility of querying the same using GQL. Thanks