Schema Documentation

createPostFormat

Description

The payload for the createPostFormat mutation

Response

Returns a CreatePostFormatPayload

Arguments
NameDescription
input - CreatePostFormatInput! Input for the createPostFormat mutation

Example

Query
mutation createPostFormat($input: CreatePostFormatInput!){
  createPostFormat(input: $input){
    clientMutationIdpostFormat {
      ...PostFormatFragment
    }
  }
}
Variables
{"input":CreatePostFormatInput}
Response
{"data":{"createPostFormat":{"clientMutationId":"xyz789","postFormat":PostFormat}}}