X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6b1037d37dfeca503289cb54304189a6774db4e9..64e387b2f4f0fe6c4c7bf16232706c7cf194caf0:/doc/api/methods.html.textile.liquid diff --git a/doc/api/methods.html.textile.liquid b/doc/api/methods.html.textile.liquid index 175463c325..872a1bca71 100644 --- a/doc/api/methods.html.textile.liquid +++ b/doc/api/methods.html.textile.liquid @@ -130,6 +130,7 @@ table(table table-bordered table-condensed). |@like@, @ilike@|string|SQL pattern match, single character match is @_@ and wildcard is @%@, ilike is case-insensitive|@["properties.my_subproperty", "like", "d00220fb%"]@| |@in@, @not in@|array of strings|Set membership|@["properties.my_subproperty", "in", ["fizz", "buzz"]]@| |@exists@|boolean|Test if a subproperty is present or not (determined by operand).|@["properties.my_subproperty", "exists", true]@| +|@contains@|string, number|Filter where subproperty has a value either by exact match or value is element of subproperty list.|@["foo", "contains", "bar"]@ will find both @{"foo": "bar"}@ and @{"foo": ["bar", "baz"]}@.| Note that exclusion filters @!=@ and @not in@ will return records for which the property is not defined at all. To restrict filtering to records on which the subproperty is defined, combine with an @exists@ filter. @@ -141,7 +142,6 @@ To query multiple clusters, the list request must: * Have filters only matching @[["uuid", "in", [...]]@ or @["uuid", "=", "..."]@ * Specify @count=none@ -* If @select@ is specified, it must include @uuid@ * Not specify @limit@, @offset@ or @order@ * Not request more items than the maximum response size