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