delete_feature_sets

Delete one or more feature sets.

Input fields

owner (FeatureSetOwnerInput!)

The owner of the feature sets to delete.

sentera_ids ([ID!]!)

Sentera IDs of the feature sets to delete. Limited to a maximum of 1000 IDs.

Return fields

action (UpsertActionType!)

Determines if it was a create or update.

analytic (Analytic)

The analytic which this deliverable fulfills.

basemap (Basemap)

For a Plot Layout this is the base raster map that was used to generate / place the plots.

content_hash (String!)

The current content hash for this item.

created_at (ISO8601DateTime!)

Date and time this feature set was created.

created_by (User!)

The user that created this feature set.

deliverable_key (DeliverableKey)

An identifier indicating what type of deliverable this is.

error (String)

An error message returned for feature sets that have failed.

files ([File]!)

A collection of files associated with this feature set.

name (String!)

Custom name for the feature set.

order (Analytic)
Deprecation notice

Please use analytic instead.

The analytic which this deliverable fulfills.

owner (FeatureSetOwner!)

The owner of this feature set.

released (Boolean!)

Has this data been released to customers.

sentera_id (ID!)

A system-generated key identifying a specific instance of a feature set.

status (FeatureSetStatus!)

The status of this feature set.

type (FeatureSetType!)

The type of the feature set.

updated_at (ISO8601DateTime!)

The timestamp of when the item was last updated in the system.

updated_by (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 GraphiQL
mutation 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"
    }
  ]
  }
}