Tags router
An overview of the tags router
Procedures
The tags router has the following procedures:
Create a tag
Create a new tag in the workspace.
- Access:
@member
// Client componentsconst { data } = api.tags.create.useMutation()// Server componentsconst data = await api.tags.create()
Update a tag
Update a tag in the workspace.
- Access:
@member
// Client componentsconst { data } = api.tags.update.useMutation()// Server componentsconst data = await api.tags.update()
Delete a tag
Delete a tag in the workspace.
- Access:
@member
// Client componentsconst { data } = api.tags.delete.useMutation()// Server componentsconst data = await api.tags.delete()
Was this helpful?