On Nov 18, 2007 1:50 AM, Dave C. <[EMAIL PROTECTED]> wrote:
> Maybe you can help me with this related problem I am having.
> My query is: q=description:(test)&&!(type:10)&&!(type:14).
>
> However, my results are not as expected (55 results instead of the expected 
> 23)
>
> The response header shows:
> "responseHeader":{
>   "status":0,
>   "QTime":1,
>   "params":{
>         "wt":"json",
>         "!(type:10)":"",
>         "!(type:14)":"",
>         "indent":"on",
>         "q":"description:(test)",
>         "fl":"*"}},
>
> I am confused about why the "&&!(type:10)&&!(type:14)" is not in the 'q' 
> parameter.

Looks like the first "&" in your query is being interpreted as a
divider in the query string.  You probably need to escape every "&" as
"%26" in your query.

-Stuart

Reply via email to