OBJECT
Mutation
link GraphQL Schema definition
- type Mutation {
- # Assign buyers to a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Assign a negotiator to a property.
- #
- # Arguments
- # input: [Not documented]
- (: AssignNegotiatorInput!): AssignNegotiatorOutput!
- # Assign owners to a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Delete a file (image, document or plan) of a property.
- #
- # Arguments
- # propertyId: [Not documented]
- # resources: [Not documented]
- (
- : UUID!,
- : [DeleteResourcesInput!]!
- ): DeleteResourcesOutput!
- # Import in bulk a list of properties. The input limited to 500 items at once.
- # If you need more, please contact with us to increase the quota.
- #
- # Arguments
- # input: [Not documented]
- (: ImportedPropertiesInput!): ImportPropertiesOutput!
- # Remove buyers from a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Remove owners from a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Replace the buyers of a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Replace the owners of a property.
- #
- # Arguments
- # input: [Not documented]
- (: ModifyContactsInput!): ModifyContactsOutput!
- # Remove existing files and replace then with new one (image, document or plan) in
- # a property.
- #
- # Arguments
- # propertyId: [Not documented]
- # resources: [Not documented]
- (
- : UUID!,
- : [UploadResourceInput!]!
- ): UploadResourcesOutput!
- # Upload one or many file (image, document or plan) for a property. The resources
- # array limited to 100 items at once.
- # If you need more, please contact with us to increase the quota.
- #
- # Arguments
- # propertyId: [Not documented]
- # resources: [Not documented]
- (
- : UUID!,
- : [UploadResourceInput!]!
- ): UploadResourcesOutput!
- }
link Require by
This element is not required by anyone