Docs
Reference
API Explorer
Become a Partner
close
GraphQL Schema
Schema
QueryRoot
MutationRoot
Scalars
Boolean
DateTime
Email
Float
ID
Int
JSONString
String
URL
Enums
AnnotationType
ApplicationCategory
AutoExportDeliveryStatusValue
ColumnType
EquipmentsSortOption
EquipmentStatus
EquipmentType
ExportFileFormat
ExportLayer
ExportStatus
FlightLogFileType
MapPlanStatus
MapPlanTemplateDefaults
NumberType
PluginLocation
StoredAssetType
WorkflowJobType
WorkflowQuality
__DirectiveLocation
__TypeKind
Interfaces
AircraftComponentSnapshot
Equipment
Node
Plan
TableColumn
Objects
AddProjectMemberPayload
Aircraft
AircraftSnapshot
Annotation
Application
AutoExportDeliveryStatus
AutoExportSetting
AutoExportSettingConnection
AutoExportSettingEdge
Battery
BatterySnapshot
BoundingPolygon
Camera
CameraSnapshot
CreateAnnotationPayload
CreateApplicationPayload
CreateApplicationVersionPayload
CreateApplicationVersionResult
CreateAutoExportSettingPayload
CreateExportPayload
CreateFlightRecordPayload
CreateIssuePayload
CreateMapPlanPayload
CreateMapPlanTemplatePayload
CreateProjectPayload
CreateTableColumnPayload
CreateTableDataPayload
CreateTablePayload
DateColumn
DateTimeColumn
DeleteAutoExportSettingPayload
DeleteTableDataPayload
EditTableDataPayload
ElevationPointMeasurement
EmailColumn
EquipmentComment
EquipmentConnection
EquipmentEdge
Export
ExportConnection
ExportEdge
ExportParameters
FlightControllerSnapshot
FlightInfo
FlightLocation
FlightLogFile
FlightLogFileConnection
FlightLogFileEdge
FlightRecord
FlightRecordConnection
FlightRecordEdge
FlightSettings
Function
Gimbal
GimbalSnapshot
Issue
IssueConnection
IssueEdge
IssueType
IssueTypeConnection
IssueTypeEdge
IssueView
Location
ManualPlan
ManualPlanTemplate
MapPlan
MapPlanConnection
MapPlanEdge
MapPlanLayer
MapPlanTemplate
NumberColumn
Organization
PageInfo
Photo
PhotoConnection
PhotoEdge
PlanConnection
PlanEdge
PreflightChecklistResult
ProgressPanoPlan
ProgressPanoPlanTemplate
ProgressPhotoPlan
ProgressPhotosPlanTemplate
ProgressVideoPlan
ProgressVideoPlanTemplate
Project
ProjectConnection
ProjectEdge
RemoteController
RemoteControllerSnapshot
RunAutoExportPayload
RunAutoExportResult
S3Credentials
StoredAsset
Table
TableData
TableDataConnection
TableDataEdge
TextColumn
UpdateAutoExportDeliveryStatusPayload
UpdateFlightRecordPayload
UpdateIssuePayload
UpdateIssueViewPayload
UpdateMapPlanPayload
UpdateProjectPayload
UploadUrl
UpsertFunctionPayload
UpsertTableDataPayload
User
ValidationInfo
Vertex
VolumeMeasurement
Webhook
__Directive
__EnumValue
__Field
__InputValue
__Schema
__Type
Input Objects
AddProjectMemberInput
AircraftSnapshotInput
BatterySnapshotInput
BoundingPolygonInput
CameraSnapshotInput
CreateAnnotationInput
CreateApplicationInput
CreateApplicationVersionInput
CreateAutoExportSettingInput
CreateExportInput
CreateFlightRecordInput
CreateIssueInput
CreateMapPlanInput
CreateMapPlanTemplateInput
CreateProjectInput
CreateTableColumnInput
CreateTableDataInput
CreateTableInput
DeleteAutoExportSettingInput
DeleteTableDataInput
EditTableDataInput
EquipmentCommentInput
ExportParametersInput
FlightControllerSnapshotInput
FlightInfoInput
FlightSettingsInput
FunctionTriggerInput
GimbalSnapshotInput
LocationInput
PreflightChecklistResultInput
RemoteControllerSnapshotInput
RunAutoExportInput
UpdateAutoExportDeliveryStatusInput
UpdateFlightRecordInput
UpdateIssueInput
UpdateIssueViewInput
UpdateMapPlanInput
UpdateProjectInput
UpsertFunctionInput
UpsertTableDataInput
VertexInput
WebhookInput
WorkflowInput
Directives
include
skip
menu
Types
GraphiQL
open_in_new
INPUT_OBJECT
CreateTableInput
link
Parameter Name
Type
Description
applicationId
String
!
The ID for the application that created this table
name
String
!
The name of the table
description
String
!
The description of the data that the table holds
clientMutationId
String
link
Required by
MutationRoot
Root of all mutations. This is where all of the operations which make changes to the API are listed. See http://graphql.org/learn/queries/#mutations for more details. Example Mutation: ``` mutation CreateExport($input:CreateExportInput!){ createExport(input:$input){ export{ id } } } ``` With variables: ``` { "input":{ "planId": "MapPlan:5a0ddee5a6b7d90aecdc2f1d", "parameters": { "layer": "ORTHOMOSAIC" } } } ```