Internal datasets
, as we'll need it to upload data later.{ "gesture": "idle" }
, and select all 'idle' files.dataset = 'Gestures study'
- returns all items and files from the study.bucket_name = 'Internal datasets' AND name IN ('Updown', 'Snake')
- returns data whose name is either 'Updown' or 'Snake, and that is stored in the 'Internal datasets' bucket.metadata->gesture = 'updown'
- return data that have a metadata field 'gesture' which contains 'updown'.created > DATE('2020-03-01')
- returns all data that was created after March 1, 2020.file_name LIKE '%.0.cbor'
- returns all files that end with .0.cbor
.dataset
- Dataset.bucket_id
- Bucket ID.bucket_name
- Bucket name.bucket_path
- Path of the data item within the bucket.id
- Data item ID.name
- Data item name.total_file_count
- Number of files for the data item.total_file_size
- Total size of all files for the data item.created
- When the data item was created.metadata->key
- Any item listed under 'metadata'.file_name
- Name of a file.file_names
- All filenames in the data item, that you can use in conjunction with CONTAINS
. E.g. find all items with file X, but not file Y: file_names CONTAINS 'x' AND not file_names CONTAINS 'y'
.ei_check
metadata item to either 0
or 1
to show a check mark in the list. Set an ei_check_KEYNAME
metadata item to 0
or 1
to show the item in the check list.