We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a6a42 commit e93571cCopy full SHA for e93571c
packages/web/docs/src/content/graphql-api/target-management.mdx
@@ -142,3 +142,20 @@ mutation UpdateTargetGraphQLEndpointUrl($input: UpdateTargetDangerousChangeClass
142
}
143
144
```
145
+
146
+## Delete a Target
147
148
+Use the `Mutation.deleteTarget` field for deleting a target within a project.
149
150
+```graphql
151
+mutation DeleteTarget($input: DeleteTargetInput!) {
152
+ deleteTarget(input: $input) {
153
+ ok {
154
+ deletedTargetId
155
+ }
156
+ error {
157
+ message
158
159
160
+}
161
+```
0 commit comments