OBJECT

DeleteClipsPayload

DeleteClipsPayload returns the deleted clips. Only the slug and id can be accessed from the returned list of deleted clips.

link GraphQL Schema definition

1type DeleteClipsPayload {
2
3# The clips that were deleted. Only Slug and ID can be accessed.
4clips: [Clip]!
5
6# The amount of clips that were deleted.
7count: Int!
8
9}