INPUT_OBJECT

UpdateProductInput

link GraphQL Schema definition

  • input UpdateProductInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • picture: CreateCloudObjectInput
  • # Field whose values are strictly defined with an enumeration of values.
  • allowedPipelines: AccessPipelinesEnum
  • # Multi-line text input field.
  • description: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • name: String
  • # Relation to single entity instance.
  • pictureId: ID
  • # Relation to single entity instance.
  • productCategoryId: ID
  • # Relation to single entity instance.
  • productTypeId: ID
  • # Simple text input field.
  • sku: String
  • # Simple text input field.
  • unitSymbol: String
  • customFields: JSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Relations to Pipelines.
  • productPipelineRelations: [CreateProductPipelineRelationNoProductBackrefInput!]
  • productPipelines: ProductPipelinesInput
  • pictureSourceUrl: String
  • }

link Require by