Skip to content

RemoveInterfaceSpecificationVersionFromComponentVersionInput

Input for the removeInterfaceSpecificationVersionfromComponentVersion mutation

graphql
input RemoveInterfaceSpecificationVersionFromComponentVersionInput {
  componentVersion: ID!
  interfaceSpecificationVersion: ID!
  invisible: Boolean!
  visible: Boolean!
}

Fields

RemoveInterfaceSpecificationVersionFromComponentVersionInput.componentVersion ● ID! non-null scalar

The id of the ComponentVersion to remove the InterfaceSpecificationVersion from.

RemoveInterfaceSpecificationVersionFromComponentVersionInput.interfaceSpecificationVersion ● ID! non-null scalar

The id of the InterfaceSpecificationVersion to remove. Must be part of the same Component as componentVersion

RemoveInterfaceSpecificationVersionFromComponentVersionInput.invisible ● Boolean! non-null scalar

If true, interfaceSpecificationVersion will be no longer invisible on componentVersion

RemoveInterfaceSpecificationVersionFromComponentVersionInput.visible ● Boolean! non-null scalar

If true, interfaceSpecificationVersion will be no longer visible on componentVersion

Member Of

removeInterfaceSpecificationVersionFromComponentVersion mutation

Released under the MIT License.