Solved
AEM 6.5 GraphQL query with filter variable of type String Array
Hi,
For the below query, I want to pass the filter variable for name. Can anyone suggest if used such type of query in the AEM? I really appreciate any help you can provide.
query {
personList(filter: {
name: {
_logOp: OR
_expressions: [
{
value: "Ramesh"
},
{
value: "Smith"
}
]
}
}) {
items {
name
firstName
}
}
}
