delete_logos

Delete one or more logos.

Input fields

owner (LogoOwnerInput!)

The owner whose logos you want to delete.

sentera_ids ([ID!]!)

Sentera IDs of the logos to delete. Limited to a maximum of 1000 IDs.

Return fields

created_at (ISO8601DateTime!)

The date and time that this logo was created.

created_by (User!)

The user that created this logo.

file (File!)

The file associated with this logo.

sentera_id (ID!)

A system-generated key identifying a specific instance of a logo.

title (String!)

The title of this logo.

updated_at (ISO8601DateTime!)

The date and time that this logo was updated.

updated_by (User)

The user that last modified this logo.

Examples

Delete Logos

Deletes logos for a given user based off of their IDs

Try this example in GraphiQL
mutation DeleteLogos {
  delete_logos(
  owner: {
    sentera_id: "o75rpvm_US_2gk8Acme_CV_deve_3d73e5320_220106_061935", 
    owner_type: USER
  }
  sentera_ids: [
    "grn1fzr_LO_2gk8Acme_CV_deve_3d73e5320_220106_073854"
  ]
  ) {
  sentera_id
  }
}

{
  "data": {
  "delete_logos": [
    {
      "sentera_id": "grn1fzr_LO_2gk8Acme_CV_deve_3d73e5320_220106_073854"
    }
  ]
  }
}