Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
261 Bytes
extend type Query {
"""
messageStatusHistory returns the full status history of a sent message.
"""
messageStatusHistory(id: ID!): [MessageStatusHistory!]!
}
type MessageStatusHistory {
status: String!
details: String!
timestamp: ISOTimestamp!
}