Re: query to return docs that has a certain field

2008-09-11 Thread Chris Hostetter
: Is there a way? I could make the documents containing field A have : another field B equals some flag, and then query for that flag, but : that would be kind of inefficient. There is space efficienty and there is time effeciency. if there was only only value for field B (ie: "true" or "yes") t

query to return docs that has a certain field

2008-09-11 Thread Cam Bazz
Hello, Lets say we have different document types, and one type of document only contains field A. How can I make a query so that I get all the documents that only has field A? There is a get all documents query, but that would get all the documents whether they contain field A or not. Is there