noteAdd
This is the mutation for adding new note for the specific artifact data either by partner or admin. The noteAdd mutation accepts NoteAddInput as input and returns output of type Note.
An example of the request is as follows:
mutation {
noteAdd(
input: {
catalogArtifactListingId: "e599c450-zyxw-abcd-b7ab-59476"
topic: GENERAL
message: "Note Message"
}
) {
id
catalogArtifactListingId
topic
message
admin
createdDate
createdByUserId
modifiedDate
}
}
noteAdd(
input: NoteAddInput!
): Note!
Arguments
noteAdd.input ● NoteAddInput! non-null input catalog-service
Type
Note object catalog-service
Was this topic helpful?