Skip to main content

Using Pinboard content in Gizmo expressions

Comments

1 comment

  • Official comment
    Rob Purbrick
    • Orgvue Team

    Yes, Pinboard content can be used in Gizmo expressions.​

    ​When you have Pinboard collections, the property “_Pinboard” is automatically generated and can be accessed ​

    The following examples show this in Gizmo expressions: ​

    node._pinboard 

    Returns all collections in which the node is included

    String(node._pinboard).split(",").includes("Collection 1")

    Returns ‘true’ if the node is pinned to Collection 1

    nodes().filter(n => String(n._pinboard).split(",").includes("Collection 1")) 

    Lists all the nodes in Collection 1

     

    This Knowledge Base Article introduces Pinboard Collections

Please sign in to leave a comment.