Is it possible to query x-data with guillotine, e.g. with queryDSL
.
I tried with the following code-snippet :
{
guillotine {
get(key: "/osde") {
displayName
x {
de_osde_app_be {
menu_item {
menuItem
}
}
}
}
queryDsl(
query: {term: {field: "x.de_osde_app_be.menu_item.menuItem", value: {boolean: true}}}
) {
displayName
}
}
}
This is the response
{
"data": {
"guillotine": {
"get": {
"displayName": "Outsourcing Portal",
"x": {
"de_osde_app_be": {
"menu_item": {
"menuItem": "true"
}
}
}
},
"queryDsl": []
}
}
}