Remove Biomarker Category

Use deleteBiomarkerCategory to remove an existing biomarker category by Id.

Argument
Type
Description

id

ID!

Id of Biomarker Category.

Available Fields

Field Name
Type
Description

success

Boolean!

True if the biomarker category has been removed successfully. Otherwise, False.

message

String!

Description of the result.

Example

mutation deleteBiomarkerCategory {
  deleteBiomarkerCategory(
    id: "QmlvbWFya2VyQ2F0ZWdvcnk6MTE1"
  ) 
  {
    success
    message
  }
}

Last updated