OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Update a single keyword by ID
  • #
  • # Arguments
  • # id:
  • # keyword:
  • updateKeyword(id: ID!, keyword: KeywordInput!): Keyword
  • # Update multiple keywords by IDs
  • #
  • # Arguments
  • # keywords:
  • updateKeywords(keywords: [KeywordAndIDInput]!): [Keyword]
  • # Update a single keyword by source ID
  • #
  • # Arguments
  • # sourceID:
  • # keyword:
  • updateKeywordBySourceID(
  • sourceID: String!,
  • keyword: KeywordInput!
  • ): Keyword
  • # Update multiple keywords by source IDs
  • #
  • # Arguments
  • # keywords:
  • updateKeywordsBySourceID(
  • keywords: [KeywordAndSourceIDInput]!
  • ): [Keyword]
  • }

link Require by

This element is not required by anyone