Skip to content

StrokeStyle ​

Style of the stroke

graphql
type StrokeStyle implements BaseNode, Node {
  color: String
  dash: [Float!]
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
}

Fields ​

StrokeStyle.color ● String scalar ​

The color of the stroke

StrokeStyle.dash ● [Float!] list scalar ​

The dash pattern of the stroke

StrokeStyle.hasPermission ● Boolean! non-null scalar ​

Checks if the current user has a specific permission on this Node

StrokeStyle.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

StrokeStyle.id ● ID! non-null scalar ​

The unique id of this node

Interfaces ​

BaseNode interface ​

Shared extensions to the node type.

Node interface ​

Base class of all nodes

Member Of ​

ComponentTemplate object ● InterfaceSpecificationTemplate object ● RelationPartnerTemplate interface ● RelationTemplate object

Implemented By ​

BaseStyle union

Released under the MIT License.