noteEdit
This is the mutation for editing note The noteEdit mutation accepts NoteEditInput as input and returns output of type Note.
An example of the request is as follows:
mutation{
noteEdit(input:{
id: "note-guid"
message: "note message"
topic: ASSIGN_TAGS
}){
id
catalogArtifactListingId
topic
message
admin
createdDate
createdByUserId
modifiedDate
}
}
noteEdit(
input: NoteEditInput!
): Note!
Arguments
noteEdit.input ● NoteEditInput! non-null input catalog-service
Type
Note object catalog-service
Was this topic helpful?