SCALAR
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
link Required by
- AddProjectMemberInputnull
- AddProjectMemberPayloadSchema for adding a member to a project
- Aircraftnull
- AircraftComponentSnapshotA record of a component of an aircraft at the point that a flight was flown
- AircraftSnapshotInformation about an aircraft
- AircraftSnapshotInputInformation about an aircraft
- Annotationnull
- ApplicationAn application that is available via the App Market
- AutoExportDeliveryStatusnull
- AutoExportSettingAutoExportSettings are used for saving custom export configurations. You can create AutoExportSettings using the createAutoExportSetting mutation. Example Query: ``` { node(id:"AutoExportSetting:5ab16b6b48273300019b14e1"){ ... on AutoExportSetting{ application { id } exportParameters { projection merge contourInterval layer fileFormat resolution } } } } ```
- AutoExportSettingEdgenull
- Batterynull
- BatterySnapshotA record of an aircraft's battery at the point that a flight was flown
- BatterySnapshotInputAn aircraft's battery
- Cameranull
- CameraSnapshotA record of a camera at the point that a flight was flown
- CameraSnapshotInputA component of an aircraft
- CreateAnnotationInputnull
- CreateAnnotationPayloadCreate an annotation of map data and queue it for processing
- CreateApplicationInputnull
- CreateApplicationPayloadCreate new application
- CreateApplicationVersionInputnull
- CreateApplicationVersionPayloadCreate new application version
- CreateAutoExportSettingInputnull
- CreateAutoExportSettingPayloadCreate an AutoExportSetting
- CreateExportInputnull
- CreateExportPayloadCreate an export of map data and queue it for processing
- CreateFlightRecordInputnull
- CreateFlightRecordPayloadCreates a new flight record
- CreateIssueInputnull
- CreateIssuePayloadnull
- CreateMapPlanInputnull
- CreateMapPlanPayloadCreate a Plan
- CreateMapPlanTemplateInputnull
- CreateMapPlanTemplatePayloadCreate a Plan
- CreateProjectInputnull
- CreateProjectPayloadSchema for creating a project
- CreateTableColumnInputnull
- CreateTableColumnPayloadCreate a table column for Datastore.
- CreateTableDataInputnull
- CreateTableDataPayloadCreate a row of data for a table in the Datastore.
- CreateTableInputnull
- CreateTablePayloadCreate a table for Datastore.
- DateColumnColumn definition for a date
- DateTimeColumnColumn definition for a date and a time
- DeleteAutoExportSettingInputnull
- DeleteAutoExportSettingPayloadSoft delete an AutoExportSetting
- DeleteTableDataInputnull
- DeleteTableDataPayloadDeletes rows in the data store by external keys.
- EditTableDataInputnull
- EditTableDataPayloadEdit users custom table data
- EmailColumnColumn definition for an email address
- EquipmentA piece of equipment used in performing flights.
- EquipmentCommentnull
- EquipmentCommentInputnull
- EquipmentEdgenull
- ExportEdgenull
- ExportParametersnull
- ExportParametersInputnull
- FlightControllerSnapshotA record of a flight controller at the point that a flight was flown
- FlightControllerSnapshotInputA record of a flight controller at the point that a flight was flown
- FlightLogFileIndividual flight log files
- FlightLogFileEdgenull
- FlightRecordA record of an individual flight
- FlightRecordEdgenull
- FunctionDroneDeploy Functions are our serverless infrastructure used for platform integrations requiring back-end APIs or asynchronous processing.
- FunctionTriggerInputnull
- Gimbalnull
- GimbalSnapshotA record of a gimbal at the point that a flight was flown
- GimbalSnapshotInputA component of an aircraft
- Issuenull
- IssueEdgenull
- IssueTypenull
- IssueTypeEdgenull
- ManualPlanTemplate for manual flight. Implements the Plan interface.
- ManualPlanTemplateTemplate for manual flight template. Implements the Plan interface.
- MapPlanUse MapPlan wherever you want to return a Plan that has the "map_plan" record type. Implements the Plan interface.
- MapPlanEdgenull
- MapPlanLayernull
- MapPlanTemplateMapPlanTemplate corresponds to plan templates for creating DroneDeploy maps. Implements the Plan interface.
- NumberColumnColumn definition for a number
- OrganizationAn Organization which contains users and has various data associated with it. Since all plans created are linked with an organization there is a paginated Connection to plans which allows you to get all plans associated with the given organization.
- PageInfonull
- PhotoProgress photos and map photos uploaded to DroneDeploy.
- PhotoEdgenull
- PlanA Plan interface with attributes common to all plan record types.
- PlanEdgenull
- ProgressPanoPlanPlans for progress pano plans. Implements the Plan interface.
- ProgressPanoPlanTemplateTemplate for progress panos. Implements the Plan interface.
- ProgressPhotoPlanPlans for progress photos. Implements the Plan interface.
- ProgressPhotosPlanTemplateTemplate for progress photos. Implements the Plan interface.
- ProgressVideoPlanPlans for progress video plans. Implements the Plan interface.
- ProgressVideoPlanTemplateTemplate for progress video. Implements the Plan interface.
- ProjectDetails about a flight
- ProjectEdgenull
- QueryRootnull
- RemoteControllernull
- RemoteControllerSnapshotA record of a remote controller at the point that a flight was flown
- RemoteControllerSnapshotInputA record of a remote controller at the point that a flight was flown
- RunAutoExportInputnull
- RunAutoExportPayloadRun Auto Export with MapPlan and AutoExportSettings
- S3CredentialsS3 Credentials generated for specific piece
- TableTables are a structured representation of data that can be stored
- TableColumnAn interface representing the common fields available on table columns.
- TableDataAn individual row of data stored in a table
- TableDataEdgenull
- TextColumnColumn definition for text
- UpdateAutoExportDeliveryStatusInputnull
- UpdateAutoExportDeliveryStatusPayloadUpdate auto export delivery status
- UpdateFlightRecordInputnull
- UpdateFlightRecordPayloadUpdates a flight record
- UpdateIssueInputnull
- UpdateIssuePayloadnull
- UpdateIssueViewInputnull
- UpdateIssueViewPayloadnull
- UpdateMapPlanInputnull
- UpdateMapPlanPayloadnull
- UpdateProjectInputnull
- UpdateProjectPayloadSchema for updating a project
- UploadUrlData needed for upload purposes
- UpsertFunctionInputnull
- UpsertFunctionPayloadCreates a function if one does not already exist with the same name for the given application, otherwise it updates the existing function. This API should not be used directly but are for use by the DroneDeploy serverless plugin which should be used for creating, testing and deploying your serverless functions.
- UpsertTableDataInputnull
- UpsertTableDataPayloadCreate a row of data or edits the data (if already exists) in the datastore
- UserDroneDeploy user object. Can be queried for user details but also used for traversing user associated data such as organization. An example query for User would be ``` { user { id username organization { id name } } } ```
- ValidationInfoValidation info about auto export setting
- Webhooknull
- WebhookInputnull
- __DirectiveA Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document. In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __InputValueArguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.