Remove Biomarker Category

Use deleteBiomarkerCategory to remove an existing biomarker category by Id.

ArgumentTypeDescription

id

ID!

Id of Biomarker Category.

Available Fields

Field NameTypeDescription

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