The deeplink parameter value is a JSON array of data source states keyed by data source ID.
deepLink=[
{ "dataSourceId":
{
"queryFunctions": [data source json as defined elsewhere],
"navByValue": {
"dimension1":"dimval1",
"dimension2":"dimval2",
"dimension3":["dimval","dimval","dimval"]
}
}
},
{ "dataSourceId2": ...},
{ "dataSourceId3": ...}
]
http://localhost:8080/web/guest?deeplink=[
{
"default": {
"queryFunctions":[
{
"class":"RecordFilter",
"recordFilter":"Designation:Best Buy"
},
{
"class":"RangeFilter",
"property":"P_Price","rangeOperator":"BTWN","value1":"50","value2":"100"
}
],
"navByValue":{
"Wine Type":"Red",
"Region":"Other France",
"Body":["Fresh","Full","Rich","Ripe"]
}
}
},
{ "v7-wine":{
"queryFunctions":[
{
"class":"RecordFilter",
"recordFilter":"Designation:Best Buy"
}
],
"navByValue":{
"Wine Type":"Red",
"Region":"Other France",
"Body":["Fresh","Full","Rich","Ripe"]
}
}
]