Enter search item, e.g. has fluiddb/users/username or display more help.
FluidDB provides a simple query language that allows applications to search for objects based on their tags’ values. The following kinds of queries are possible:
tim/rating > 5.sally/opinion
matches fantastic. Text matching is done with Lucene,
meaning that Lucene matching capabilities and style will
be available (coming soon).has to request
objects that have a given tag. For example, has
sally/opinion.mary/product-reviews/keywords might be on an object with
a value of [ "cool", "kids", "adventure" ]. The contains
operator can be used to select objects with a matching
value. The query mary/product-reviews/keywords contains
"kids" would match the object in this example.except keyword. For example has
nytimes.com/appeared except has james/seen. The except
operator performs a set difference.and and or. For example, has sara/rating
and tim/rating > 5.has sara/rating
and (tim/rating > 5 or mike/rating > 7).That's it!
More information can be found here: http://doc.fluidinfo.com/fluidDB/queries.html