Last reviewed: June 18, 2024
Retrieving vertexAI results with pagination
Retrieving vertexAI results with pagination
For backward-compatibility reasons, use the articlesv3 query.
Examples:
query {
articlesv3 (pageSize: 10, filter:{title:{contains:"cms"}}) {
articles {
id
title
tags
createdAt
updatedAt
}
pageInfo {
totalCount
nextCursor
}
}
}