INPUT_OBJECT

CreateNetworkSiteMutationInput

The input object that defines the fields for the createNetworkSite mutation.

link GraphQL Schema definition

  • input CreateNetworkSiteMutationInput {
  • # A descriptive name.
  • name: String!
  • # Height in meters.
  • height_in_meters: Float!
  • # The address for the network site.
  • address: CreateNetworkSiteAddressMutationInput!
  • # Data to insert into custom fields.
  • custom_field_data: [CustomFieldDataMutationInput]
  • # If IDs of `CustomField` objects that are associated with this entity are
  • # provided here, they will be unset and removed. You cannot unset data where the
  • # `CustomField` property `required` is set to `true`.
  • unset_custom_field_data: [Int64Bit]
  • # A note about this entity.
  • note: NoteMutationInput
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • # The task to be performed.
  • tasks: [TaskMutationInput]
  • }

link Require by