X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7db1d0f490158ffa5672eda245dacb355e196d3d..1d904d1e54b91edefc95dee9326bb726eb646d9c:/doc/api/methods.html.textile.liquid diff --git a/doc/api/methods.html.textile.liquid b/doc/api/methods.html.textile.liquid index 508a288557..7b28533e30 100644 --- a/doc/api/methods.html.textile.liquid +++ b/doc/api/methods.html.textile.liquid @@ -84,8 +84,8 @@ Example: @["head_uuid asc","modified_at desc"]@ Default: @["modified_at desc", "uuid asc"]@|query| |select |array |Attributes of each object to return in the response (by default, all available attributes are returned, except collections, which do not return @manifest_text@ unless explicitly selected). Example: @["uuid","name","modified_at"]@|query| -|distinct|boolean|@true@: (default) do not return duplicate objects -@false@: permitted to return duplicates|query| +|distinct|boolean|When returning multiple records whose selected attributes (see @select@) are equal, return them as a single response entry. +Default is @false@.|query| |count|string|@"exact"@ (default): Include an @items_available@ response field giving the number of distinct matching items that can be retrieved (irrespective of @limit@ and @offset@ arguments). @"none"@: Omit the @items_available@ response field. This option will produce a faster response.|query| @@ -110,7 +110,7 @@ table(table table-bordered table-condensed). @["storage_classes_desired","=","[\"default\"]"]@| |@<@, @<=@, @>=@, @>@|string, number, or timestamp|Ordering comparison|@["script_version",">","123"]@| |@like@, @ilike@|string|SQL pattern match. Single character match is @_@ and wildcard is @%@. The @ilike@ operator is case-insensitive|@["script_version","like","d00220fb%"]@| -|@in@, @not in@|array of strings|Set membership|@["script_version","in",["main","d00220fb38d4b85ca8fc28a8151702a2b9d1dec5"]]@| +|@in@, @not in@|array of strings or integers|Set membership|@["script_version","in",["main","d00220fb38d4b85ca8fc28a8151702a2b9d1dec5"]]@| |@is_a@|string|Arvados object type|@["head_uuid","is_a","arvados#collection"]@| |@exists@|string|Presence of subproperty|@["properties","exists","my_subproperty"]@| |@contains@|string, array of strings|Presence of one or more keys or array elements|@["storage_classes_desired", "contains", ["foo", "bar"]]@ (matches both @["foo", "bar"]@ and @["foo", "bar", "baz"]@)