delete_feature_sets
Delete one or more feature sets.
Input fields
FeatureSetOwnerInput!)
The owner of the feature sets to delete.
[ID!]!)
Sentera IDs of the feature sets to delete. Limited to a maximum of 1000 IDs.
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
Delete Feature Sets
Deletes a list of specified feature sets for a given owner.
Try this example in GraphiQLmutation DeleteFeatureSets{
delete_feature_set(
owner: {
owner_type: SURVEY
sentera_id: "58ag1kg_CO_c9hoAcme123_AD_u1qxybut_ac5d85f7_190711_163140"
}
sentera_ids: [
"qt8le2u_FS_h2b3Acme_CV_deve_040c29409_220110_115409",
"at8le2u_FS_h2b3Acme_CV_deve_040c29409_220110_115410"
]
) {
sentera_id
name
}
}
{
"data": {
"delete_feature_sets": [
{
"sentera_id": "o2axj5w_FI_c9hoAcme123_AD_stag_de3e709_201021_215530",
"name": "example 1"
},
{
"sentera_id": "o2axj5w_FI_c9hoAcme123_AD_stag_de3e709_201021_215530",
"name": "example 2"
}
]
}
}