OBJECT

CreateClipPayload

CreateClipPayload returns the created clip or any error that prevented the clip creation.

link GraphQL Schema definition

1type CreateClipPayload {
2
3# The created clip has all fields execpt for durationSeconds and viewCount.
4clip: Clip
5
6# The error when a clip fails to create.
7error: CreateClipError
8
9}