feature_set
Retrieve a feature set.
Arguments
ID!)
The Sentera ID of the feature set being retrieved
Return fields
UpsertActionType!)
Determines if it was a create or update.
Analytic)
The analytic which this deliverable fulfills.
Basemap)
For a Plot Layout this is the base raster map that was used to generate / place the plots.
String!)
The current content hash for this item.
ISO8601DateTime!)
Date and time this feature set was created.
User!)
The user that created this feature set.
DeliverableKey)
An identifier indicating what type of deliverable this is.
String)
An error message returned for feature sets that have failed.
[File]!)
A collection of files associated with this feature set.
String!)
Custom name for the feature set.
Analytic)
Please use analytic instead.
The analytic which this deliverable fulfills.
FeatureSetOwner!)
The owner of this feature set.
Boolean!)
Has this data been released to customers.
ID!)
A system-generated key identifying a specific instance of a feature set.
FeatureSetStatus!)
The status of this feature set.
FeatureSetType!)
The type of the feature set.
ISO8601DateTime!)
The timestamp of when the item was last updated in the system.
User)
The user who last updated this item.
Examples
Feature Set by Sentera ID
Retrieve a feature set
Try this example in GraphiQLquery RetrieveFeatureSet {
feature_set(sentera_id: "itqkn28_FS_SHORT1_CV_test_dc0d87d_170907_235328") {
sentera_id
name
type
files {
file_type
filename
size
}
status
error
}
}
{
"data": {
"feature_set": {
"sentera_id": "itqkn28_FS_SHORT1_CV_test_dc0d87d_170907_235328",
"name": "Detailed Crop Analysis",
"type": "UNKNOWN",
"files": [
{
"file_type": "geo_json",
"filename": "detailed_crop_analysis.json",
"size": "835"
}
],
"status": "SUCCESS",
"error": null
}
}
}