Hello, 😃
I have this GrqphQL which I use to get objects depending on its related collection (that is in the search key),
query {
search(
limit: 10,
start: 0,
table: "ca_objects",
search: "ca_collections.idno:1993",
bundles: [
"name:<unit locale=en_US>^ca_objects.preferred_labels.name</unit>",
"description:<unit locale=en_US>^ca_objects.description</unit>"
],
latestCount: 9
restrictToTypes: ["image","text"],
) {
count,
result {
idno,
bundles {
name,
values {
value
}
}
}
}
}
I want to modify it so I can get the all objects that is related to the collection and it children and grand children,
How can I achieve that?
Note: I'm Using the Dublin Core Profile
Thanks