get Variant Metadata
fun getVariantMetadata(timestamp: Timestamp?, uuid: String?, name: String?, limit: Int = 1, closedOnly: Boolean = true): List<MetaData>
Get the MetaData of a set of Fragments. The result size can be limited. All three identifiers are optional. if no identifier is provided, an empty list is returned. If exactly one identifier is provided, it is used to find the Fragments. If more than one identifier is provided, ONLY ONE identifier is used to find the fragments. This identifier is chosen by priority: 1: variantID (uuid) 2: variantTime (timestamp) 3: variantName (name)
Parameters
timestamp
Optional timestamp of the variant(s) to find Fragments
uuid
Optional variantID of the variant to find Fragments: In case the ID is given, at most one fragment is returned
name
Optional name of the variant(s) to find Fragments
limit
The max result size. Default value is one.