Types

Link copied to clipboard
class CreateViewInput(val relationLayouts: OptionalInput<List<UpdateRelationLayoutInput>>, val relationPartnerLayouts: OptionalInput<List<UpdateRelationPartnerLayoutInput>>, val filterByTemplate: List<ID>, val project: ID) : CreateNamedNodeInput, UpdateLayoutInput

Input for the createView mutation

Link copied to clipboard
class RelationLayoutInput(val points: List<Point>) : Input

Input which defines the layout of a Relation

Link copied to clipboard

Input which defines the layout of a RelationPartner

Link copied to clipboard

Common input for updating the layout of a Project

Link copied to clipboard
class UpdateRelationLayoutInput(val relation: ID, val layout: RelationLayoutInput?) : Input

Input to update the layout of a Relation

Link copied to clipboard
class UpdateRelationPartnerLayoutInput(val relationPartner: ID, val layout: RelationPartnerLayoutInput?) : Input

Input to update the layout of a RelationPartner

Link copied to clipboard
class UpdateViewInput(val relationLayouts: OptionalInput<List<UpdateRelationLayoutInput>>, val relationPartnerLayouts: OptionalInput<List<UpdateRelationPartnerLayoutInput>>, val filterByTemplate: OptionalInput<List<ID>>) : UpdateNamedNodeInput, UpdateLayoutInput

Input for the updateView mutation