notes
Query returns a list of all the notes for given catalogArtifactListingId,
if requester is the partner who created this listing or is an admin.
The notes query takes NoteQueryInput as input and returns output of type Note.
An example of the request is as follows:
query {
notes(input: {
catalogArtifactListingId: "6257b8a0-aa4b-48a9-8285-15085a70ec1c",
sortOrder: ASC,
topic: SELECT_BUNDLE,
author: "admin@boomi.com"
}){
id
catalogArtifactListingId
topic
message
admin
createdDate
createdByUserId
modifiedDate
}
}
notes(
input: NoteQueryInput
): [Note!]
Arguments
notes.input ● NoteQueryInput input catalog-service
Type
Note object catalog-service
Was this topic helpful?