Update Biomarker Category
Argument
Type
Description
Available Fields
Field Name
Type
Description
Example
mutation updateBiomarkerCategory {
updateBiomarkerCategory(input: {
id: "QmlvbWFya2VyQ2F0ZWdvcnk6MTE1",
name: "Category Test update",
order: 1
})
{
success
message
errors { field messages }
biomarkerCategory {name order id createdAt updatedAt}
}
}
{
"data": {
"updateBiomarkerCategory": {
"success": true,
"message": "Biomarker category saved",
"errors": null,
"biomarkerCategory": {
"name": "Category Test update",
"order": 1,
"id": "QmlvbWFya2VyQ2F0ZWdvcnk6MTE2",
"createdAt": "2023-03-31T22:24:37.119951+00:00",
"updatedAt": "2023-03-31T22:24:37.119971+00:00"
}
}
}
}Last updated
Was this helpful?