OBJECT
Mutation
Every GraphQL schema has a root type for both queries and mutations. The mutation type defines GraphQL operations that change data on Noticeable servers. It is analogous to performing HTTP verbs such as POST, PATCH, and DELETE.
For more information, see "About mutations".
link GraphQL Schema definition
- type Mutation {
- # Arguments
- # input: [Not documented]
- (
- CreateEmailSubscriptionInput! :
- ): CreateEmailSubscriptionOutput
- # Arguments
- # input: [Not documented]
- (
- DeleteEmailSubscriptionInput! :
- ): DeleteEmailSubscriptionOutput
- # Arguments
- # input: [Not documented]
- (
- UpdateEmailSubscriptionInput! :
- ): UpdateEmailSubscriptionOutput
- # Arguments
- # input: [Not documented]
- (
- CreatePostInput! :
- ): CreatePostPayload @deprecated( reason: "Use createPublication instead of createPost." )
- # Arguments
- # input: [Not documented]
- (
- DeletePostInput! :
- ): DeletePostPayload @deprecated( reason: "Use deletePublication instead of deletePost." )
- # Arguments
- # input: [Not documented]
- (
- UpdatePostInput! :
- ): UpdatePostPayload @deprecated( reason: "Use updatePublication instead of updatePost." )
- # Arguments
- # input: [Not documented]
- CreatePublicationInput!): CreatePublicationPayload ( :
- # Arguments
- # input: [Not documented]
- DeletePublicationInput!): DeletePublicationPayload ( :
- # Arguments
- # input: [Not documented]
- UpdatePublicationInput!): UpdatePublicationPayload ( :
- }
link Require by
This element is not required by anyone