Labels - ION Manual
Create a label
You create labels inline from any record that supports them, such as a procedure, run, purchase, or issue:
- On the record, click Labels (or Add labels).
- In the picker, type the label name in the Search or create labels… box.
- If no matching label exists, click Create "".
ION creates the label, adds it to the shared library for every object type, and applies it to the current record. To reuse it elsewhere, open the labels picker on another record and search for it.
Delete a label
Deleting a label removes it from all records across ION. Label deletion is only available through the API; there is no UI option yet.
- Query for the label to get its
idand_etag. Replace<your label here>with the label value.
{
labels(filters: {value: {eq: <your label here>}}) {
edges {
node {
id
_etag
value
}
}
}
}
- Delete the label using the
idand_etagfrom the previous query.
mutation DeleteLabel($id: ID!, $etag: String!) {
deleteLabel(id: $id, etag: $etag) {
id
}
}
Variables:
{
"id": "<id from previous step>",
"etag": "<etag from previous step>"
}