GraphQL reference

SyncFeatureInput

Input

Autogenerated input type of SyncFeature

mutation { organization(id: $organizationId) { project(id: $projectId) { syncFeature } } }

Example

mutation SyncFeature(
  $organizationId: ID!
  $projectId: ID!
  $input: SyncFeatureInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      syncFeature(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
featureString!
mutationMetadataJSON