chats
Graphql fields and variables for the chats query
query chats ($after: String, $before: String, $first: Int, $last: Int) {
chats (after: $after, before: $before, first: $first, last: $last) {
edges {
cursor
node {
createdAt
id
title
updatedAt
}
}
totalCount
pageInfo {
startCursor
endCursor
hasNextPage
hasPreviousPage
}
}
}Arguments
Name
Type
Description
Response
Last updated
Was this helpful?
