OBJECT
Mutation
link GraphQL Schema definition
- type Mutation {
- # add brochure link for prospect
- #
- # Arguments
- # clientName: name of client
- # email: email address of client
- # brochureUrl: URL to brochure
- (
- String!, :
- String!, :
- String! :
- ): Boolean
- # Update a homesite, lot and inventory information by a lot externalId
- #
- # Arguments
- # clientName: name of client
- # input: update data for an inventory-lot identified by external
- # ID
- (
- String!, :
- InventoryLotUpdateInput! :
- ): HomesiteUpdateResult
- # Update a collection of homesites
- #
- # Arguments
- # clientName: name of client
- # input: an array of inventory-lot update data identified by
- # external IDs
- (
- String!, :
- InventoryLotUpdateInput!] : [
- ): [HomesiteUpdateResult]
- # Update Community plan pricing
- #
- # Arguments
- # clientName: name of client
- # input: pricing data for a Community-Plan-Elevation tuple
- (
- String!, :
- CommunityPlanPricingInput!] : [
- ): [CommunityPlanPricingResult]
- # Update Community plan pricing using external IDs
- #
- # Arguments
- # clientName: name of client
- # updates: pricing data for a Community-Plan-Elevation tuple
- # identified with external IDs
- (
- String!, :
- CommunityPlanUpdateInput!] : [
- ): [CommunityPlanUpdateResult]
- # Update plans
- #
- # Arguments
- # clientName: name of client
- # updates: plan data to update by external ID or system ID
- (
- String!, :
- PlanUpdateInput!] : [
- ): [PlanUpdateResult]
- }
link Require by
This element is not required by anyone