OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Pause the Reference
  • #
  • # Arguments
  • # id: ID of the record
  • pauseReference(id: ID!): Reference
  • # Unpause the Reference
  • #
  • # Arguments
  • # id: ID of the record
  • unpauseReference(id: ID!): Reference
  • # Pause the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • pauseBottle(id: ID!): Bottle
  • # Unpause the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • unpauseBottle(id: ID!): Bottle
  • # Pause the Image
  • #
  • # Arguments
  • # id: ID of the record
  • pauseImage(id: ID!): Image
  • # Unpause the Image
  • #
  • # Arguments
  • # id: ID of the record
  • unpauseImage(id: ID!): Image
  • # Pause the Bottle family
  • #
  • # Arguments
  • # id: ID of the record
  • pauseBottleFamily(id: ID!): BottleFamily
  • # Unpause the Bottle family
  • #
  • # Arguments
  • # id: ID of the record
  • unpauseBottleFamily(id: ID!): BottleFamily
  • # Pause the Bottle manufacturer
  • #
  • # Arguments
  • # id: ID of the record
  • pauseBottleManufacturer(id: ID!): BottleManufacturer
  • # Unpause the Bottle manufacturer
  • #
  • # Arguments
  • # id: ID of the record
  • unpauseBottleManufacturer(id: ID!): BottleManufacturer
  • # Set the Reference published
  • #
  • # Arguments
  • # id: ID of the record
  • publishReference(id: ID!): Reference
  • # Set the Bottle published
  • #
  • # Arguments
  • # id: ID of the record
  • publishBottle(id: ID!): Bottle
  • # Set the Bottle Family published
  • #
  • # Arguments
  • # id: ID of the record
  • publishBottleFamily(id: ID!): BottleFamily
  • # Set the Image published
  • #
  • # Arguments
  • # id: ID of the record
  • publishImage(id: ID!): Image
  • # Save the Availability
  • #
  • # Arguments
  • # data: Create Availability input object
  • createAvailability(data: CreateAvailabilityInput!): Availability!
  • # Update the Availability
  • #
  • # Arguments
  • # data: Update Availability input object
  • updateAvailability(data: UpdateAvailabilityInput!): Availability!
  • # Soft delete the Availability
  • #
  • # Arguments
  • # id: ID of the record
  • archiveAvailability(id: ID!): Availability
  • # Restore the Availability
  • #
  • # Arguments
  • # id: ID of the record
  • restoreAvailability(id: ID!): Availability
  • # Permanently delete the Availability
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteAvailability(id: ID!): Availability
  • # Save the Bottle
  • #
  • # Arguments
  • # data: Create Bottle input object
  • createBottle(data: CreateBottleInput!): Bottle!
  • # Update the Bottle
  • #
  • # Arguments
  • # data: Update Bottle input object
  • updateBottle(data: UpdateBottleInput!): Bottle!
  • # Update Bottles Order
  • #
  • # Arguments
  • # data: Update Bottle order input object
  • updateBottlesOrder(data: UpdateBottlesOrderInput!): Message!
  • # Soft delete the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • archiveBottle(id: ID!): Bottle!
  • # Restore the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • restoreBottle(id: ID!): Bottle!
  • # Permanently delete the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteBottle(id: ID!): Bottle!
  • # Clone the Bottle
  • #
  • # Arguments
  • # id: ID of the record
  • cloneBottle(id: ID!): Bottle
  • # Save the Bottle Family
  • #
  • # Arguments
  • # data: Create Bottle Family input object
  • createBottleFamily(data: CreateBottleFamilyInput!): BottleFamily!
  • # Update the Bottle Family
  • #
  • # Arguments
  • # data: Update Bottle Family input object
  • updateBottleFamily(data: UpdateBottleFamilyInput!): BottleFamily!
  • # Soft delete the Bottle Family
  • #
  • # Arguments
  • # id: ID of the record
  • archiveBottleFamily(id: ID!): BottleFamily!
  • # Restore the Bottle Family
  • #
  • # Arguments
  • # id: ID of the record
  • restoreBottleFamily(id: ID!): BottleFamily!
  • # Force delete the Bottle Family
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteBottleFamily(id: ID!): BottleFamily!
  • # Clone the Bottle Family
  • #
  • # Arguments
  • # id: ID of the record
  • cloneBottleFamily(id: ID!): BottleFamily
  • # Save the Bottle Manufacturer
  • #
  • # Arguments
  • # data: Create Bottle Manufacturer input object
  • createBottleManufacturer(
  • data: CreateBottleManufacturerInput!
  • ): BottleManufacturer!
  • # Update the Bottle Manufacturer
  • #
  • # Arguments
  • # data: Update Bottle Manufacturer input object
  • updateBottleManufacturer(
  • data: UpdateBottleManufacturerInput!
  • ): BottleManufacturer!
  • # Soft delete the Bottle Manufacturer
  • #
  • # Arguments
  • # id: ID of the record
  • archiveBottleManufacturer(id: ID!): BottleManufacturer
  • # Restore the Bottle Manufacturer
  • #
  • # Arguments
  • # id: ID of the record
  • restoreBottleManufacturer(id: ID!): BottleManufacturer
  • # Permanently delete the Bottle Manufacturer
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteBottleManufacturer(id: ID!): BottleManufacturer
  • # Save the Bottle Section
  • #
  • # Arguments
  • # data: Create Bottle Section input object
  • createBottleSection(data: CreateBottleSectionInput!): BottleSection!
  • # Update the Bottle Section
  • #
  • # Arguments
  • # data: Update Bottle Section input object
  • updateBottleSection(data: UpdateBottleSectionInput!): BottleSection!
  • # Soft delete the Bottle Section
  • #
  • # Arguments
  • # id: ID of the record
  • archiveBottleSection(id: ID!): BottleSection
  • # Restore the Bottle Section
  • #
  • # Arguments
  • # id: ID of the record
  • restoreBottleSection(id: ID!): BottleSection
  • # Permanently delete the Bottle Section
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteBottleSection(id: ID!): BottleSection
  • # Save the Bottle Shape
  • #
  • # Arguments
  • # data: Create Bottle Shape input object
  • createBottleShape(data: CreateBottleShapeInput!): BottleShape!
  • # Update the Bottle Shape
  • #
  • # Arguments
  • # data: Update Bottle Shape input object
  • updateBottleShape(data: UpdateBottleShapeInput!): BottleShape!
  • # Soft delete the Bottle Shape
  • #
  • # Arguments
  • # id: ID of the record
  • archiveBottleShape(id: ID!): BottleShape
  • # Restore the Bottle Shape
  • #
  • # Arguments
  • # id: ID of the record
  • restoreBottleShape(id: ID!): BottleShape
  • # Permanently delete the Bottle Shape
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteBottleShape(id: ID!): BottleShape
  • # Save the Closure
  • #
  • # Arguments
  • # data: Create Closure input object
  • createClosure(data: CreateClosureInput!): Closure!
  • # Update the Closure
  • #
  • # Arguments
  • # data: Update Closure input object
  • updateClosure(data: UpdateClosureInput!): Closure!
  • # Soft delete the Closure
  • #
  • # Arguments
  • # id: ID of the record
  • archiveClosure(id: ID!): Closure
  • # Restore the Closure
  • #
  • # Arguments
  • # id: ID of the record
  • restoreClosure(id: ID!): Closure
  • # Permanently delete the Closure
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteClosure(id: ID!): Closure
  • # Delete the record from Volume autocomplete
  • #
  • # Arguments
  • # id: ID of the record
  • deleteVolumeEnumItem(id: ID!): EnumVolume
  • # Delete the record from Country autocomplete
  • #
  • # Arguments
  • # id: ID of the record
  • deleteCountryEnumItem(id: ID!): EnumCountry
  • # Delete the record from Colour name autocomplete
  • #
  • # Arguments
  • # id: ID of the record
  • deleteColourNameEnumItem(id: ID!): EnumColourName
  • # Save the File
  • #
  • # Arguments
  • # data: Create File input object
  • createFile(data: CreateFileInput!): File!
  • # Save the Glass Colour
  • #
  • # Arguments
  • # data: Create Glass Colour input object
  • createGlassColour(data: CreateGlassColourInput!): GlassColour!
  • # Update the Glass Colour
  • #
  • # Arguments
  • # data: Update Glass Colour input object
  • updateGlassColour(data: UpdateGlassColourInput!): GlassColour!
  • # Soft delete the Glass Colour
  • #
  • # Arguments
  • # id: ID of the record
  • archiveGlassColour(id: ID!): GlassColour
  • # Restore the Glass Colour
  • #
  • # Arguments
  • # id: ID of the record
  • restoreGlassColour(id: ID!): GlassColour
  • # Permanently delete the Glass Colour
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteGlassColour(id: ID!): GlassColour
  • # Save the Image
  • #
  • # Arguments
  • # data: Create Image input object
  • createImage(data: CreateImageInput!): Image!
  • # Update the Image
  • #
  • # Arguments
  • # data: Update Image input object
  • updateImage(data: UpdateImageInput!): Image!
  • # Update Images Order
  • #
  • # Arguments
  • # data: Update Image order input object
  • updateImagesOrder(data: UpdateImagesOrderInput!): Message!
  • # Soft delete the Image
  • #
  • # Arguments
  • # id: ID of the record
  • archiveImage(id: ID!): Image!
  • # Restore the Image
  • #
  • # Arguments
  • # id: ID of the record
  • restoreImage(id: ID!): Image!
  • # Permanently delete the Image
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteImage(id: ID!): Image!
  • # Save the Media
  • #
  • # Arguments
  • # data: Media object
  • createMedia(data: CreateMediaInput!): Media!
  • # Save the Reference
  • #
  • # Arguments
  • # data: Create Reference input object
  • createReference(data: CreateReferenceInput!): Reference!
  • # Update the Reference
  • #
  • # Arguments
  • # data: Update Reference input object
  • updateReference(data: UpdateReferenceInput!): Reference!
  • # Soft delete the Reference
  • #
  • # Arguments
  • # id: ID of the record
  • archiveReference(id: ID!): Reference!
  • # Restore the Reference
  • #
  • # Arguments
  • # id: ID of the record
  • restoreReference(id: ID!): Reference!
  • # Permanently delete the Reference
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteReference(id: ID!): Reference!
  • # Save the Reference Category
  • #
  • # Arguments
  • # data: Create Reference Category input object
  • createReferenceCategory(
  • data: CreateReferenceCategoryInput!
  • ): ReferenceCategory!
  • # Update the Reference Category
  • #
  • # Arguments
  • # data: Update Reference Category input object
  • updateReferenceCategory(
  • data: UpdateReferenceCategoryInput!
  • ): ReferenceCategory!
  • # Soft delete the Reference Category
  • #
  • # Arguments
  • # id: ID of the record
  • archiveReferenceCategory(id: ID!): ReferenceCategory
  • # Restore the Reference Category
  • #
  • # Arguments
  • # id: ID of the record
  • restoreReferenceCategory(id: ID!): ReferenceCategory
  • # Permanently delete the Reference Category
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteReferenceCategory(id: ID!): ReferenceCategory
  • # Save slug
  • #
  • # Arguments
  • # data: Edit slug input object
  • editSlug(data: EditSlugInput!): Slug!
  • # Save the Suitability
  • #
  • # Arguments
  • # data: Create Suitability input object
  • createSuitability(data: CreateSuitabilityInput!): Suitability!
  • # Update the Suitability
  • #
  • # Arguments
  • # data: Update Suitability input object
  • updateSuitability(data: UpdateSuitabilityInput!): Suitability!
  • # Soft delete the Suitability
  • #
  • # Arguments
  • # id: ID of the record
  • archiveSuitability(id: ID!): Suitability
  • # Restore the Suitability
  • #
  • # Arguments
  • # id: ID of the record
  • restoreSuitability(id: ID!): Suitability
  • # Permanently delete the Suitability
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteSuitability(id: ID!): Suitability
  • # Save the Vinolok Size
  • #
  • # Arguments
  • # data: Create Vinolok Size input object
  • createVinolokSize(data: CreateVinolokSizeInput!): VinolokSize!
  • # Update the Vinolok Size
  • #
  • # Arguments
  • # data: Update Vinolok Size input object
  • updateVinolokSize(data: UpdateVinolokSizeInput!): VinolokSize!
  • # Soft delete the Vinolok Size
  • #
  • # Arguments
  • # id: ID of the record
  • archiveVinolokSize(id: ID!): VinolokSize
  • # Restore the Vinolok Size
  • #
  • # Arguments
  • # id: ID of the record
  • restoreVinolokSize(id: ID!): VinolokSize
  • # Permanently delete the Vinolok Size
  • #
  • # Arguments
  • # id: ID of the record
  • forceDeleteVinolokSize(id: ID!): VinolokSize
  • # Send login with credentials
  • #
  • # Arguments
  • # input: Login input object
  • login(input: LoginInput): AuthPayload!
  • # Send login with Wordpress auth token
  • #
  • # Arguments
  • # input: Login with Wordpress auth token input object
  • loginWithToken(input: LoginWithTokenInput): AuthPayload!
  • # Send logout
  • logout: LogoutResponse!
  • }

link Require by

This element is not required by anyone