Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syndeia 3.4 (Web Dashboard)
Tutorial Exercise 8.2
Gremlin Queries for JIRA Issues

Image Removed

47 Perimeter Ctr E, Suite 410
Atlanta, GA 303046, USA
Voice: +1-404-592-6897
Web: www.intercax.com
Email: info@intercax.com

...

Objectives

The objective of this exercise is to help new users of Syndeia graph analysis to formulate Gremlin queries to analyze their graph with the Syndeia Web Dashboard.

The specific learning objectives of this exercise are to create lists of:

  • JIRA artifacts of a specific artifact type

  • JIRA artifacts in a specific Container

  • JIRA artifacts connected as part of a specific Syndeia Project

Preparation

This exercise assumes the student has:

  • Syndeia Cloud 3.3 or 3.4 installed with a valid user account, and

  • An existing Syndeia graph containing JIRA issues connected to elements in other repositories.

Because the content of your Syndeia graph will be different, the specific examples in the following exercise instructions are only a guide and example for your actions. It is generally advisable to carry out these exercises in a non-production repository, a "sandbox", set up for training and practice purposes.

See the tutorials under Syndeia Cloud Web-Dashboard/Part 19 – Syndeia Cloud Graph Analysis for an overview of this feature .

Background – Syndeia Cloud Data Model

Anchor_Hlk69285393_Hlk69285393 Anchor_Hlk69287839_Hlk69287839Figure 1 provides a simplified schema for elements in the Syndeia Cloud graph. All graph nodes are either Repositories, Containers, or Artifacts, where each Artifact is owned by a Container and Each Container is owned by a Repository. Each has a Type; the set of ContainerTypes and ArtifactTypes are owned by the Repository. How the JIRA data model maps to the Syndeia Cloud data model is discussed in the next section.

...

Image Removed

...

...

Background – JIRA

As of Syndeia release 3.4, the Syndeia Web Dashboard can extract and display some model information from a JIRA repository. Figure 1 shows a tree view of this information, with labels identifying the JIRA element types. Note the different icons. The label color coding indicates how the JIRA element type is mapped to the Syndeia Cloud element types: Repository (green), Container (red), and Artifact (blue). The Syndeia JIRA integration supports a large number of standard JIRA issue types, including Story, Bug, Task, Improvement, as well as other standard and custom types. A more complete diagram of the JIRA data model as it is understood by Syndeia is available through the web dashboard help menu on the left.

It is also important to understand the limitations of graph queries with respect to the JIRA repositories. As of Syndeia 3.4, graph queries cannot extract the internal structure of a JIRA repository, i.e. they cannot be used to obtain the full structure of the JIRA repository or internal (intra-model) relations between JIRA artifacts. In this way, they are different than the Tree View or Graph View (Digital Thread Explorer) capabilities of the Repositories page in the Syndeia Web Dashboard. Graph queries are most useful in viewing inter-model connections from JIRA elements to other repositories.

...

IssueProjectJIRA Repository Image Removed

...

Figure 2 Tree view of JIRA repository

Exercise

...

  1. Log on to the Syndeia Cloud Web Dashboard (see Video 1.9) and click on the Graph Queries icon on the left border.

  2. The first task is to compile a list of JIRA Artifacts of a specific type. Per Figure 1, ArtifactTypes are owned by (specific to) a Repository. We typically want to begin by creating a list of Artifact types available in such a Repository.

    1. If we use Query Builder (Figure 3), we select ArtifactType from the pull-down menu under Label.

      Image Removed

      Anchor_Ref481833169_Ref481833169Image Added

      Figure 3 Graph Queries page (icon outlined in red) – Query Builder

    2. To restrict the list of ArtifactTypes to our current JIRA repository, we click Filters. We will filter by the name of our Repository, so we select Repository from the pull-down menu at the top marked Property of. Under Property Key, we select the Name property and under Property Value, we enter JIRA @ Intercax. We then click the Plus (plus) button to add the filter in the bottom list and the window should look similar to Figure 4. Click Close.

      Image Removed

      Anchor_Ref481833841_Ref481833841Image Added

      Figure 4 Query Builder Filters window

  3. Back on the Graph Queries page, click Run. The results, a list of all ArtifactTypes in JIRA @ Intercax, may be displayed in table form as in Figure 5. Key ArtifactType properties in the table are Name and Key, because we will use these in the next search. Click the Exports icon to export the list as a CSV file for future reference, if desired.

...

Image Removed

...

  1. Image Added

    Figure 5  Graph Queries page, ArtifactTypes results in table format (Export icon highlighted in red)

  2. Note at the top of Figure 5, the Query Builder utility has created a Gremlin query. We could have performed the same search with the same results by going to the Raw Query mode and entering this query directly.
    g.V().has('sLabel','ArtifactType').where(outE().has('sLabel','ownedBy').inV().has('name','JIRA @ Intercax'))

  3. The final part of the first task is to generate a list of all Artifacts of type Bug within the JIRA @ Intercax Repository. Note that Syndeia will return only those JIRA Bugs that are connected within the Syndeia Cloud graph, not all Bugs in the repository.

    1. We can search by ArtifactType Name ("Bug") or Key (ART-TYPE396), which we got from the table in Figure 5. Generally, it is better to search by Key, which is unique within the Syndeia Cloud database, rather than Name, which is not unique.

    2. If we use Query Builder, we select Artifact from the pull-down menu under Label, as in Figure 6.

...

Image Removed

...


    1. Image Added

      Figure 6  Query Builder, Artifact search

    2. To restrict the list of Artifacts to the JIRA Bug type, we click Filters. We will filter by the ArtifactType Key, so we select ArtifactType from the pull-down menu at the top marked Property of. Under Property Key, we select the sKey property and under Property Value, we enter ART-TYPE396, which we took from the table in Figure 5. After we click the Plus (plus) icon, the Filters window should look like Figure 7. Click Close.

...

Image Removed

...

    1. Image Added

      Figure 7  Query Builder Filters window, filter by ArtifactType sKey

  1. Back on the Graph Queries page, click Run. The results, a list of all Artifacts of type ART-TYPE396, which is owned by the repository JIRA @ Intercax, may be displayed in table form as in Figure 8. Click the Exports icon to export the list as a CSV file for future reference, if desired.

...

Image Removed

  1. Image Added

    Figure 8  Graph Queries page, Artifacts results in table format (Export icon highlighted in red)

  2. Note at the top of Figure 5, the Query Builder utility has created a Gremlin query. We could have performed the same search with the same results by going to the Raw Query mode and entering this query directly.
    g.V().has('sLabel','Artifact').where(outE().has('sLabel','hasType').inV().has('sKey','ART-TYPE396'))

  3. The second task is to compile a list of JIRA Artifacts in a specific JIRA Project. Per Figure 2, Projects in JIRA are Containers and are owned by (specific to) a Repository. We will begin by creating a list of Containers available in a JIRA Repository.

    1. If we use Query Builder (Figure 9), we select Container from the pull-down menu under Label.

      Image Removed

      Anchor_Ref74291537_Ref74291537Image Added

      Figure 9 Graph Queries page (icon outlined in red) – Query Builder

    2. To restrict the list of Containers to our current JIRA repository, we click Filters. We will filter by the name of our Repository, so we select Repository from the pull-down menu at the top marked Property of. Under Property Key, we select the Name property and under Property Value, we enter JIRA @ Intercax. We then click the Plus (plus) button to add the filter in the bottom list and the window should look similar to Figure 10. Click Close.

      Image Removed

      Anchor_Ref74291713_Ref74291713Image Added

      Figure 10 Query Builder Filters window

  4. Back on the Graph Queries page, click Run. The results, a list of all Containers in JIRA @ Intercax may be displayed in table form as in Figure 11. Key Container properties in the table are Name and Key, because we will use these in the next search. Click the Exports icon to export the list as a CSV file for future reference, if

    desired.

...

Image Removed

...

  1. desired.

    Image Added

    Figure 11  Graph Queries page, Containers results in table format (Export icon highlighted in red)
    Caution: The list of JIRA Projects listed in Figure 11 does not include all Projects in the JIRA @ Intercax repository. Only those Projects that own Artifacts that are connected to other models (or are connected directly themselves) appear on the list. Other JIRA Projects that do not involve connections to other repositories are not part of the Syndeia Cloud graph and do not appear in Gremlin graph query results.

  2. Note at the top of Figure 11, the Query Builder utility has created a Gremlin query. We could have performed the same search with the same results by going to the Raw Query mode and entering this query directly.
    g.V().has('sLabel','Container').where(outE().has('sLabel','ownedBy').inV().has('name','JIRA @ Intercax'))

  3. The final part of the second task is to generate a list of all Artifacts in a specific Container within the JIRA @ Intercax Repository. Note that Syndeia will return only those JIRA Bugs that are connected within the Syndeia Cloud graph, not all Bugs in the repository.

    1. We can search by Container Name ("Maritime_ESOH") or Key (CONT967), which we got from the table in Figure 11. Generally, it is better to search by Key, which is unique within the Syndeia Cloud database, rather than Name, which is not unique.

    2. If we use Query Builder, we select Artifact from the pull-down menu under Label, as in Figure 12.

      Image Removed

      Anchor_Ref74293078_Ref74293078Image Added

      Figure 12  Query Builder, Artifact search

    3. To restrict the list of Artifacts to the JIRA Project Maritime_ESOH, we click Filters. We will filter by the Container Key, so we select Container from the pull-down menu at the top marked Property of. Under Property Key, we select the sKey property and under Property Value, we enter CONT967, which we took from the table in Figure 11. After we click the Plus (plus) icon, the Filters window should look like Figure 13. Click Close.

...

Image Removed

...

    1. Image Added

      Figure 13  Query Builder Filters window, filter by Container sKey

  1. Back on the Graph Queries page, click Run. The results, a list of all Artifacts in Container CONT967, which is owned by the repository JIRA @ Intercax, may be displayed in table form as in Figure 14. Note that only JIRA issues that are part of the Syndeia Cloud graph appear; there may be other JIRA issues in this Project without connections to other repositories that do not appear.

...

Image Removed

...

  1. Image Added

    Figure 14  Graph Queries page, Artifacts results in table format, truncated

  2. Note at the top of Figure 14, the Query Builder utility has created a Gremlin query. We could have performed the same search with the same results by going to the Raw Query mode and entering this query directly.
    g.V().has('sLabel','Artifact').where(outE().has('sLabel','ownedBy').inV().has('sKey','CONT967'))

  3. The third task is to compile a list of JIRA Artifacts that are connected as part of a specific Syndeia Project. Syndeia Projects are partitions within the Syndeia Cloud graph database that separate different projects or system models. Syndeia Projects are Containers owned by the Syndeia Repository. Unlike JIRA Projects, Syndeia Projects contain only relations, the inter-model relations that define the "macrostructure" of the Digital Thread for that system or project. In this case, we are looking not for the JIRA issues directly; we are looking for inter-model connections where one end is a JIRA issue.

  4. We will begin by creating a list of Containers available in the Syndeia Repository.

    1. If we use Query Builder (Figure 15), we select Container from the pull-down menu under Label.

      Image Removed

      Anchor_Ref74295216_Ref74295216Image Added

      Figure 15 Graph Queries page (icon outlined in red) – Query Builder

    2. To restrict the list of Containers to the Syndeia repository, we click Filters. We will filter by the name of our Repository, so we select Repository from the pull-down menu at the top marked Property of. Under Property Key, we select the Name property and under Property Value, we enter Syndeia Repository. We then click the Plus (plus) button to add the filter in the bottom list and the window should look similar to Figure 16. Click Close.

      Image Removed

      Anchor_Ref74294096_Ref74294096

      Image Added

      Figure 16 Query Builder Filters window

  5. Back on the Graph Queries page, click Run. The results, a list of all Containers in the Syndeia Repository may be displayed in table form as in Figure 17. Key Container properties in the table are Name and Key, because we will use these in the next search. Click the Exports icon to export the list as a CSV file for future reference, if desired.

...

Image Removed

...

  1. Image Added

    Figure 17  Graph Queries page, Containers results in table format, truncated

  2. Note at the top of Figure 17, the Query Builder utility has created a Gremlin query. We could have performed the same search with the same results by going to the Raw Query mode and entering this query directly.
    g.V().has('sLabel','Container').where(outE().has('sLabel','ownedBy').inV().has('name','Syndeia Repository'))

  3. The next part of the third task is to generate a list of all Relations within a specific Syndeia Project.

    1. We can search by Container Name ("Dirk Sandbox 15") or Key (DZSB15), which we got from the table in Figure 17. Generally, it is better to search by Key, which is unique within the Syndeia Cloud database, rather than Name, which is not unique.

    2. If we use Query Builder, we select Relation from the pull-down menu under Label, as in Figure 18. Remember, the Syndeia Projects contain relations, not artifacts.

      Image Removed

      Anchor_Ref74294016_Ref74294016Image Added

      Figure 18  Query Builder, Artifact search

    3. To restrict the list of Relations to a specific Syndeia Project, we click Filters. We will filter by the Container Key, so we select Container from the pull-down menu at the top marked Property of. Under Property Key, we select the sKey property and under Property Value, we enter DZSB15, which we took from the table in Figure 17. After we click the Plus (plus) icon, the Filters window should look like Figure 19. Click Close.

...

Image Removed


    1. Image Added

      Figure

...

    1. 19  Query Builder Filters window, filter by Container sKey

  1. Back on the Graph Queries page, click Run. The results, a list of all Relations in Container DZSB15, which is owned by the Syndeia Repository, may be displayed in table form as in Figure 20. Note that all relations within the project appear, not just those with a JIRA issue at one end.

...

Image Removed

...

  1. Image Added

    Figure 20  Graph Queries page, Relations (Edges) results in table format, truncated

  2. The final step is to identify the JIRA issues that participate in these relations, but this cannot be done in Query Builder alone. Note at the top of Figure 20, the Query Builder utility has created a Gremlin query.

    g.E().has('sLabel','Relation').has('container','DZSB15')
    We will use the Gremlin query language to append an additional condition. First we will add an additional traversal step to go to the vertices at the end of the relations. Since we don't know whether the JIRA issue will have an incoming or outgoing relation in the Syndeia project, we use the bothV() step to cover both ends.
    g.E().has('sLabel','Relation').has('container','DZSB15').bothV()
    Next we will check all vertices for ArtifactType. Going back to the table in Figure 5, we choose JIRA Task, ART-TYPE399.
    g.E().has('sLabel','Relation').has('container','DZSB15').bothV().has('type','ART-TYPE399')
    If we select Raw Query and enter this in the Gremlin Query field, we generate the table in Figure 21, showing all JIRA tasks of ART-TYPE399 used in the Syndeia Project DZSB15.

...

Image Removed

  1. Image Added

    Figure 21  Graph Queries page, Artifacts results in table format, truncated

  2. There are alternate ways to approach the problem. If we wanted to search for JIRA issues in a specific JIRA Project (CONT967) that were used in a Syndeia Project (DZSB15), we could reformulate the query using the first part from Step 20 and the second part from Step 13.

    g.E().has('sLabel','Relation').has('container','DZSB15').bothV().where(outE().has('sLabel','ownedBy') .inV().has('sKey','CONT967'))