List sequences. Use nextCursor to paginate through the results.
Paged response with a list of sequences.
const sequences = await client.sequences.list({ filter: { name: 'sequence_name' } });
{- "items": [- {- "id": 1,
- "name": "Any relevant name",
- "description": "Optional description",
- "assetId": 1221123111,
- "externalId": "my.known.id",
- "metadata": {- "extracted-by": "cognite"
 },
- "columns": [- {- "name": "depth",
- "externalId": "DPS1",
- "description": "Optional description",
- "valueType": "STRING",
- "metadata": {- "extracted-by": "cognite"
 },
- "createdTime": 100000000000,
- "lastUpdatedTime": 100000000000
 }
 ],
- "createdTime": 100000000000,
- "lastUpdatedTime": 100000000000,
- "dataSetId": 2718281828459
 }
 ],
- "nextCursor": "string"
}