HI All,
I have the sample index as below
post doctorindex/_doc
{
"TABLENAME" : "doctor"
"ID" : "d_1",
"DOCID":1
"ULIST" : ["C*","AB"]
}
post doctorindex/_doc
{
"TABLENAME" : "doctor"
"ID" : "d_2",
"DOCID":2
"ULIST" : ["A","AB*"]
}
post doctorindex/_doc
{
"TABLENAME" : "doctor"
"ID" : "d_3",
"DOCID":3
"ULIST" : ["A","AB*","GH","BH","NG"]
}
I created the Dashboard based on given index,
Now i need to filter the data in dashboard based on user ulist.(at the time of login)
i will pass the ulist from web application/.net application as "A","NG" to the dashboard URL,if iany one matches then that data only need to display to user.
So how can i pass this as parameter to the URL?