API Stability Preview

The deleteExternalFunction() GraphQL mutation may be used to delete a given external function specification.

Syntax

Below is the syntax for the deleteExternalFunction() mutation field:

graphql
deleteExternalFunction(
      input: deleteExternalFunctionInput!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteExternalFunction( input: {
         name: "cool_function"
  } )
}
Example Responses
Show:
json
{
  "data": {
    "deleteExternalFunction": true
  }
}

Given Datatypes

For deleteExternalFunctionInput, there are two parameters. Below are descriptions of them:

Table: deleteExternalFunctionInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Nov 14, 2024
namestringyes  The name of the external function to delete.