Query features in a dataset
client.datasets.features(stringid, DatasetFeaturesParams { cursor, limit } query?, RequestOptionsoptions?): FeatureCollection { features, type }
GET/api/v1/datasets/{id}/features
Query features in a dataset
import Plaza from '@plazafyi/sdk';
const client = new Plaza({
apiKey: process.env['PLAZA_API_KEY'], // This is the default and can be omitted
});
const featureCollection = await client.datasets.features('id');
console.log(featureCollection.features);