Hi @PRATHYUSHA_VP ,thank you very much for helping. Regarding@PRATHYUSHA_VP wrote:I have tested out the same from my end, the reason why the first query is working and not the second one is it compares the full jcr property in the graphQL query and retrieve the result (below screenshot). It is expec...
Hello, I would like to request data via GraphQL query based on a Tag multifield like this:The parameters to return this data should be for example:["wknd-shared:season/summer"]["wknd-shared:season/summer", "wknd-shared:season/spring"]I tried this query:query ($adventureTags: [String]) {
adventureL...
Thank you for this solution. It works but the only issue with it is, that you can't really use multiple parameter because it will bloat the URL length. A URL with only one parameter is in our case already 300 characters long, now if we want to add this functionality to 6 more we have reached already...
Anyone found a solution here? We would also need this feature to work with persisted queries. Our example: query getArrayTest(
$param1Values: [String],
) {
testList(
filter: {
param1: {_expressions: [{values: $param1Values, _operator: CONTAINS}]},
}
) {
... Wo...
Hi @EstebanBustamante ,sorry for the late reply and thank you for the hints. I could solve the problem with it. The problem was that this request/graphql/execute.json/test-project/get-articles-by-path%3BstartsWith%3D%2Fcontent%2Ftest became this/graphql/execute.json/test-project/get-articles-by-path...
We have following persisted query: http://localhost:4502/graphql/execute.json/test-project/get-articles-by-path%3BstartsWith%3D%2Fcontent%2Fdam%2Ftest-project The GraphQL query has the parameter "startsWith" which takes a path like this: query getArticlesByPath($startsWith: ID!) {
articleCfmList(...
Hi @aanchal-sikka , thank you very much for this hint. After adding the property to the index the query works now.The only question I have now is why the intended index "fragments" from the "AEM Content Fragment with GraphQL Index Package" is not used and instead damAssetLucene is used? Edit: Now I ...
yes, we also excluded "/content/dam/customerA" once from the index and then the query worked.
But excluding the whole path in damAssetLucene is not really an option.
Thank you for the suggestion but we have already installed "AEM Content Fragment with GraphQL Index Package 1.0.5".
Also I forgot to mention we have AEM 6.5.14
We have following structure in our project
/content/dam/customerA
it contains 300k+ Content Fragments of type CFMofAGraphQL Endpoint customer-A
/content/dam/customerB
it contains 10 Content Fragments of type CFMofBGraphQL Endpoint customer-B
Now we try to send a GraphQL query like this to get a lis...