GenSearchMessage
description
A single message within a conversation thread, containing both request and response.
type GenSearchMessage {
id: String!
request: GenSearchMessageRequest!
response: GenSearchMessageResponse
}
Fields
GenSearchMessage.id ● String! non-null scalar graph-ql-types
Unique identifier for this message. @exposed
GenSearchMessage.request ● GenSearchMessageRequest! non-null object graph-ql-types
The user's original request for this message. @exposed
GenSearchMessage.response ● GenSearchMessageResponse object graph-ql-types
The generated response for this message, null if response has not started. @exposed
Member Of
GenSearchThread object