OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createArticle(input: CreateArticleInput!, siteId: Int!): Article!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • # articleId: [Not documented]
  • updateArticle(
  • input: UpdateArticleInput!,
  • siteId: Int!,
  • articleId: Int!
  • ): Article!
  • # Arguments
  • # siteId: New site Id of overridden article
  • # articleId: Article id to override
  • overrideArticle(siteId: Int!, articleId: Int!): Article!
  • # Arguments
  • # siteId: [Not documented]
  • # articleId: [Not documented]
  • deleteArticle(siteId: Int!, articleId: Int!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • unpublishArticles(input: UnpublishArticlesInput!, siteId: Int!): [Article]!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • publishArticles(input: PublishArticlesInput!, siteId: Int!): [Article]!
  • # Arguments
  • # input: Ids of articles to publish
  • # siteId: Id of site which possesses the category
  • # categoryId: Id of the category on which articles will be
  • # published
  • publishArticlesInCategory(
  • input: [Int]!,
  • siteId: Int!,
  • categoryId: Int!
  • ): [Article]!
  • # Arguments
  • # input: Ids of articles to unpublish
  • # siteId: Id of site which possesses the category
  • # categoryId: Id of the category on which articles will be
  • # unpublished
  • unPublishArticlesInCategory(
  • input: [Int]!,
  • siteId: Int!,
  • categoryId: Int!
  • ): [Article]!
  • # Arguments
  • # input: [Not documented]
  • createCompany(input: CreateCompanyInput!): Company!
  • # Arguments
  • # input: [Not documented]
  • # companyId: [Not documented]
  • updateCompany(input: UpdateCompanyInput!, companyId: Int!): Company!
  • # Arguments
  • # companyId: [Not documented]
  • deleteCompany(companyId: Int!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • createUserCompany(input: CreateUserCompanyInput!): UserCompany!
  • # Arguments
  • # input: [Not documented]
  • # userCompanyId: [Not documented]
  • updateUserCompany(
  • input: UpdateUserCompanyInput!,
  • userCompanyId: Int!
  • ): UserCompany!
  • # Arguments
  • # userCompanyId: [Not documented]
  • deleteUserCompany(userCompanyId: Int!): Boolean!
  • # Arguments
  • # input: List of parameters to create a site
  • createSite(input: CreateSiteInput!): Site!
  • # Arguments
  • # input: List of parameters to update a site
  • # siteId: Site Id to update
  • updateSite(input: UpdateSiteInput!, siteId: Int!): Site!
  • # Arguments
  • # input: Data input
  • # siteId: Site Id to update
  • updateSiteVariation(
  • input: UpdateVariationInput!,
  • siteId: Int!
  • ): Site!
  • # Arguments
  • # siteId: Id of your site
  • # contactEmail: Your new email of contact
  • updateSiteContactEmail(siteId: Int!, contactEmail: String!): Site!
  • # Arguments
  • # siteId: Site Id to delete
  • deleteSite(siteId: Int!): Boolean!
  • # Arguments
  • # siteHost: Host of a site (or a platform) you want to enable
  • # HTTPS support, e.g.: example.com.
  • enableSsl(siteHost: String!): Site!
  • # Arguments
  • # siteHost: Host of a site (or a platform) you want to disable
  • # HTTPS support, e.g.: example.com.
  • disableSsl(siteHost: String!): Site!
  • # Arguments
  • # siteId: Site Id to enable ssl
  • enableSpecificWorkflowSsl(siteId: Int!): Boolean!
  • # Arguments
  • # siteId: Site Id to disable ssl
  • disableSpecificWorkflowSsl(siteId: Int!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createField(input: CreateFieldInput!, siteId: Int!): Field!
  • # Arguments
  • # input: [Not documented]
  • # fieldId: [Not documented]
  • # siteId: [Not documented]
  • updateField(input: UpdateFieldInput!, fieldId: Int!, siteId: Int!): Field!
  • # Arguments
  • # fieldId: [Not documented]
  • # siteId: [Not documented]
  • deleteField(fieldId: Int!, siteId: Int!): Boolean!
  • # Arguments
  • # fieldId: [Not documented]
  • # siteId: [Not documented]
  • overrideField(fieldId: Int!, siteId: Int!): Field!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createCallTracking(
  • input: CreateCallTrackingInput!,
  • siteId: Int!
  • ): CallTracking!
  • # Arguments
  • # input: [Not documented]
  • # callTrackingId: [Not documented]
  • updateCallTracking(
  • input: UpdateCallTrackingInput!,
  • callTrackingId: Int!
  • ): CallTracking!
  • # Arguments
  • # siteId: [Not documented]
  • # phoneDestination: Your new phone number (the real number, not
  • # the tracked/mirror one)
  • # useCallCenterNumber: Should use call center number?
  • updateCallTrackingPhoneDestination(
  • siteId: Int!,
  • phoneDestination: String!,
  • useCallCenterNumber: Boolean
  • ): CallTracking!
  • # Arguments
  • # callTrackingId: [Not documented]
  • deleteCallTracking(callTrackingId: Int!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • # companyId: [Not documented]
  • createUser(input: CreateUserInput!, companyId: Int!): User!
  • # Arguments
  • # input: [Not documented]
  • # companyId: [Not documented]
  • # userId: [Not documented]
  • updateUser(input: UpdateUserInput!, companyId: Int!, userId: Int!): User!
  • # Arguments
  • # companyId: [Not documented]
  • # userId: [Not documented]
  • deleteUser(companyId: Int!, userId: Int!): Boolean!
  • # Arguments
  • # siteId: New site Id of overridden page
  • # pageId: Page id to override
  • overridePage(siteId: Int!, pageId: Int!): Page!
  • # Arguments
  • # input: [Not documented]
  • # siteId: New site Id of overridden page
  • # pageId: Page id to override
  • updatePage(input: UpdatePageInput!, siteId: Int!, pageId: Int!): Page!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createLocation(input: CreateLocationInput!, siteId: Int!): Location!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • # locationId: [Not documented]
  • updateLocation(
  • input: UpdateLocationInput!,
  • siteId: Int!,
  • locationId: Int!
  • ): Location!
  • # Arguments
  • # locationId: [Not documented]
  • # siteId: [Not documented]
  • deleteLocation(locationId: Int!, siteId: Int!): Boolean!
  • # Arguments
  • # locationId: [Not documented]
  • # siteId: [Not documented]
  • overrideLocation(locationId: Int!, siteId: Int!): Location!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createCategory(input: CreateCategoryInput!, siteId: Int!): Category!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • # categoryId: [Not documented]
  • updateCategory(
  • input: UpdateCategoryInput!,
  • siteId: Int!,
  • categoryId: Int!
  • ): Category!
  • # Arguments
  • # siteId: Id of site on which category exists
  • # categoryId: Id of the category to delete
  • deleteCategory(siteId: Int!, categoryId: Int!): Boolean!
  • # Arguments
  • # siteId: Id of site on which category exists
  • # categoryId: Id of the category to override
  • overrideCategory(siteId: Int!, categoryId: Int!): Category!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createImagine(input: CreateImagineInput!, siteId: Int!): ImagineList!
  • # Arguments
  • # input: [Not documented]
  • # imagineId: [Not documented]
  • # siteId: [Not documented]
  • updateImagine(
  • input: UpdateImagineInput!,
  • imagineId: Int!,
  • siteId: Int!
  • ): ImagineList!
  • # Arguments
  • # imagineId: [Not documented]
  • # siteId: [Not documented]
  • deleteImagine(imagineId: Int!, siteId: Int!): Boolean!
  • # Arguments
  • # imagineId: [Not documented]
  • # siteId: [Not documented]
  • overrideImagine(imagineId: Int!, siteId: Int!): ImagineList!
  • # Push (and not create) new medias in an ImagineList
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Site id where the image needs to be created
  • # imagineId: Imagine list id
  • createImagineMedias(
  • input: CreateImagineMediasInput!,
  • siteId: Int!,
  • imagineId: Int!
  • ): [ImagineImageList!]
  • # Create a new image in a list
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Site id where the image needs to be created
  • # imagineId: Imagine list id
  • createImagineImage(
  • input: CreateImagineImageInput!,
  • siteId: Int!,
  • imagineId: Int!
  • ): ImagineImageList!
  • # Update an image in a list
  • #
  • # Arguments
  • # input: Input data
  • # imageId: Image id to update
  • # imagineId: Imagine list id
  • # siteId: Site id where the image needs to be updated
  • updateImagineImage(
  • input: UpdateImagineImageInput!,
  • imageId: Int!,
  • imagineId: Int!,
  • siteId: Int!
  • ): ImagineImageList!
  • # Delete an image from a list
  • #
  • # Arguments
  • # imageId: Image id to delete
  • # imagineId: Imagine list id
  • # siteId: Site id where the image needs to be deleted
  • deleteImagineImage(imageId: Int!, imagineId: Int!, siteId: Int!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createTeamWorker(input: CreateTeamWorkerInput!, siteId: Int!): TeamWorker!
  • # Arguments
  • # input: [Not documented]
  • # teamWorkerId: [Not documented]
  • # siteId: [Not documented]
  • updateTeamWorker(
  • input: UpdateTeamWorkerInput!,
  • teamWorkerId: Int!,
  • siteId: Int!
  • ): TeamWorker!
  • # Arguments
  • # teamWorkerId: [Not documented]
  • # siteId: [Not documented]
  • deleteTeamWorker(teamWorkerId: Int!, siteId: Int!): Boolean!
  • # Create a new Media category
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Id of the Site where the Media category will be created
  • createMediaCategory(
  • input: CreateMediaCategoryInput!,
  • siteId: Int!
  • ): MediaCategory!
  • # Update a Media category
  • #
  • # Arguments
  • # input: Input data
  • # mediaCategoryId: Id of the Media category to update
  • # siteId: Id of the Site where the Media category will be updated
  • updateMediaCategory(
  • input: UpdateMediaCategoryInput!,
  • mediaCategoryId: Int!,
  • siteId: Int!
  • ): MediaCategory!
  • # Delete a Media category
  • #
  • # Arguments
  • # mediaCategoryId: Id of the Media category to delete
  • # siteId: [Not documented]
  • deleteMediaCategory(mediaCategoryId: Int!, siteId: Int!): Boolean!
  • # Update the platform's sites theme
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Id of the Platform
  • updatePlatformSitesTheme(
  • input: UpdatePlatformSitesThemeInput!,
  • siteId: Int!
  • ): Boolean!
  • # Update themes for the given sites
  • #
  • # Arguments
  • # input: Input data
  • updateSitesTheme(input: UpdateSitesThemeInput!): Boolean!
  • # Create a new Image Slider
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Id of a Site where the Image Slider will be created.
  • createImageSlider(input: CreateImageSliderInput!, siteId: Int!): ImageSlider!
  • # Update an Image Slider
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Id of a Site that owns the Image Slider
  • # imageSliderId: Id of the ImageSlider to update
  • updateImageSlider(
  • input: UpdateImageSliderInput!,
  • siteId: Int!,
  • imageSliderId: Int!
  • ): ImageSlider!
  • # Arguments
  • # siteId: Id of a Site that will owns the overridden Image Slider
  • # imageSliderId: Id of the ImageSlider to update
  • overrideImageSlider(siteId: Int!, imageSliderId: Int!): ImageSlider!
  • # Upload a Media
  • #
  • # Arguments
  • # siteId: Id of the Site where Medias will be uploaded.
  • # categoriesIds: Ids of Categories where the uploaded Medias will
  • # belongs.
  • uploadMedias(siteId: Int!, categoriesIds: [Int]): [Media!]!
  • # Arguments
  • # mediaId: [Not documented]
  • # siteId: [Not documented]
  • overrideMedia(mediaId: Int!, siteId: Int!): Media!
  • # Update a Media
  • #
  • # Arguments
  • # input: Input data
  • # mediaId: Id of the Media to update
  • # siteId: Id of the Site where the Media will be updated
  • updateMedia(input: UpdateMediaInput!, mediaId: Int!, siteId: Int!): Media!
  • # Bulk update Medias
  • #
  • # Arguments
  • # input: Input data
  • # siteId: Id of the Site where Medias will be updated
  • bulkUpdateMedias(input: BulkUpdateMediasInput!, siteId: Int!): [Media]
  • # Delete a Media
  • #
  • # Arguments
  • # mediaId: Id of the Media to delete
  • # siteId: Id of the site where the Media will be deleted
  • deleteMedia(mediaId: Int!, siteId: Int!): Boolean!
  • # Bulk delete Media
  • #
  • # Arguments
  • # input: Input data
  • bulkDeleteMedia(input: BulkDeleteMediaInput!): Boolean!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createService(input: CreateServiceInput!, siteId: Int!): Service!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • # serviceId: [Not documented]
  • updateService(
  • input: UpdateServiceInput!,
  • siteId: Int!,
  • serviceId: Int!
  • ): Service!
  • # Arguments
  • # siteId: New site Id of overridden service
  • # serviceId: Service id to override
  • overrideService(siteId: Int!, serviceId: Int!): Service!
  • # Arguments
  • # siteId: [Not documented]
  • # serviceId: [Not documented]
  • deleteService(siteId: Int!, serviceId: Int!): Boolean!
  • # Arguments
  • # siteId: [Not documented]
  • # serviceCategoryId: [Not documented]
  • # servicesIds: [Not documented]
  • setServicesOrder(
  • siteId: Int!,
  • serviceCategoryId: Int!,
  • servicesIds: [Int!]!
  • ): [Service!]!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createServiceCategory(
  • input: CreateServiceCategoryInput!,
  • siteId: Int!
  • ): ServiceCategory!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • # serviceCategoryId: [Not documented]
  • updateServiceCategory(
  • input: UpdateServiceCategoryInput!,
  • siteId: Int!,
  • serviceCategoryId: Int!
  • ): ServiceCategory!
  • # Arguments
  • # siteId: New site Id of overridden service
  • # serviceCategoryId: ServiceCategory id to override
  • overrideServiceCategory(
  • siteId: Int!,
  • serviceCategoryId: Int!
  • ): ServiceCategory!
  • # Arguments
  • # siteId: [Not documented]
  • # serviceCategoryId: [Not documented]
  • deleteServiceCategory(siteId: Int!, serviceCategoryId: Int!): Boolean!
  • # Arguments
  • # siteId: [Not documented]
  • # serviceCategoriesIds: [Not documented]
  • setServiceCategoriesOrder(
  • siteId: Int!,
  • serviceCategoriesIds: [Int!]!
  • ): [ServiceCategory!]!
  • # Arguments
  • # input: [Not documented]
  • # siteId: [Not documented]
  • createReviewSubmission(
  • input: CreateReviewSubmissionInput!,
  • siteId: Int!
  • ): ReviewSubmission!
  • # Arguments
  • # siteId: Site id of submission
  • # reviewSubmissionId: Review submission id
  • changeVisibilityReviewSubmission(
  • siteId: Int!,
  • reviewSubmissionId: Int!
  • ): ReviewSubmission!
  • # Arguments
  • # input: [Not documented]
  • # siteId: Site id of review
  • commentReview(input: CommentReviewInput!, siteId: Int!): Review!
  • # Arguments
  • # input: [Not documented]
  • # siteId: Id of a Site
  • # prevGroupId: Id of a Group
  • # nextGroupId: Id of a Group
  • createAlpGroup(
  • input: CreateAlpGroupInput!,
  • siteId: Int!,
  • prevGroupId: Int,
  • nextGroupId: Int
  • ): AlpGroup!
  • # Arguments
  • # input: [Not documented]
  • # siteId: Id of a Site
  • # groupId: Id of the Group to update
  • updateAlpGroup(
  • input: UpdateAlpGroupInput!,
  • siteId: Int!,
  • groupId: Int!
  • ): AlpGroup!
  • # Arguments
  • # siteId: Id of a Site
  • # groupId: Id of the Group to update
  • # prevGroupId: Id of a Group
  • # nextGroupId: Id of a Group
  • moveAlpGroup(
  • siteId: Int!,
  • groupId: Int!,
  • prevGroupId: Int,
  • nextGroupId: Int
  • ): Boolean!
  • # Arguments
  • # siteId: Id of a Site
  • # groupId: Id of the Group to delete
  • deleteAlpGroup(siteId: Int!, groupId: Int): Boolean!
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # widgetId: Id of the Widget to move
  • moveAlpWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • widgetId: Int!
  • ): Boolean!
  • # Arguments
  • # siteId: Id of a Site
  • # widgetId: Id of the Widget to delete
  • deleteAlpWidget(siteId: Int!, widgetId: Int!): Boolean!
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpAddressWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpAddressWidgetInput
  • ): AlpAddressWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpArticleWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpArticleWidgetInput
  • ): AlpArticleWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpArticlesWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpArticlesWidgetInput
  • ): AlpArticlesWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpContactEmailWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpContactEmailWidgetInput
  • ): AlpContactEmailWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpContactFormSubmissionsWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpContactFormSubmissionsWidgetInput
  • ): AlpContactFormSubmissionsWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpCustomFieldImageWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpCustomFieldImageWidgetInput
  • ): AlpCustomFieldImageWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpCustomFieldListWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpCustomFieldListWidgetInput
  • ): AlpCustomFieldListWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpCustomFieldWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpCustomFieldWidgetInput
  • ): AlpCustomFieldWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpImagineListWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpImagineListWidgetInput
  • ): AlpImagineListWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpLogoWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpLogoWidgetInput
  • ): AlpLogoWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpPhoneWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpPhoneWidgetInput
  • ): AlpPhoneWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpScheduleWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpScheduleWidgetInput
  • ): AlpScheduleWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpServicesWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpServicesWidgetInput
  • ): AlpServicesWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpReviewsWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpReviewsWidgetInput
  • ): AlpReviewsWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpSliderWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpSliderWidgetInput
  • ): AlpSliderWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpTextWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpTextWidgetInput
  • ): AlpTextWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # groupId: Id of the Group which will contains this Widget.
  • # prevWidgetId: Id of a Widget which will precedes this Widget.
  • # nextWidgetId: Id of a Widget which will follows this Widget.
  • # input: Input data.
  • createAlpSiteCallsWidget(
  • siteId: Int!,
  • groupId: Int!,
  • prevWidgetId: Int,
  • nextWidgetId: Int,
  • input: CreateAlpSiteCallsWidgetInput
  • ): AlpSiteCallsWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpAddressWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpAddressWidgetInput
  • ): AlpAddressWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpArticleWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpArticleWidgetInput
  • ): AlpArticleWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpArticlesWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpArticlesWidgetInput
  • ): AlpArticlesWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpContactEmailWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpContactEmailWidgetInput
  • ): AlpContactEmailWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpContactFormSubmissionsWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpContactFormSubmissionsWidgetInput
  • ): AlpContactFormSubmissionsWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpCustomFieldImageWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpCustomFieldImageWidgetInput
  • ): AlpCustomFieldImageWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpCustomFieldListWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpCustomFieldListWidgetInput
  • ): AlpCustomFieldListWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpCustomFieldWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpCustomFieldWidgetInput
  • ): AlpCustomFieldWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpImagineListWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpImagineListWidgetInput
  • ): AlpImagineListWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpLogoWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpLogoWidgetInput
  • ): AlpLogoWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpPhoneWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpPhoneWidgetInput
  • ): AlpPhoneWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpScheduleWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpScheduleWidgetInput
  • ): AlpScheduleWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpServicesWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpServicesWidgetInput
  • ): AlpServicesWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpReviewsWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpReviewsWidgetInput
  • ): AlpReviewsWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpSliderWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpSliderWidgetInput
  • ): AlpSliderWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpTextWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpTextWidgetInput
  • ): AlpTextWidget
  • # Arguments
  • # siteId: Id of the Site which owns Group `groupId`.
  • # widgetId: Id of the Widget to update.
  • # input: Input data.
  • updateAlpSiteCallsWidget(
  • siteId: Int!,
  • widgetId: Int!,
  • input: UpdateAlpSiteCallsWidgetInput
  • ): AlpSiteCallsWidget
  • }

link Require by

This element is not required by anyone