Pagination
This guide will help you get started with fetching sequences of Alerts from the Alerts API
Example
[
{
"id": "05978d3a-0a49-8b63-b054-b65d37e4eb05"
},
{
"id": "9b8a3e5d-b7e5-0a67-7788-96d98349407b"
},
{
"id": "030bd54a-745b-9d6d-33d7-e683a0ee7389"
},
]query getAlerts {
alerts(first: 1) {
id
}
}Last updated
Was this helpful?