Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.03 KB

File metadata and controls

34 lines (23 loc) · 1.03 KB

GL_Created

Edge Schema

Edge Properties

Property Type Description
commit string Git commit SHA of the pipeline trigger. Present only on GL_User → GL_Pipeline edges.

General Information

The non-traversable GL_Created edge records authorship and creation relationships. It has three forms:

User → User — An administrator created this user account.

User → Project — A user created this project.

User → Pipeline — A user triggered or created this pipeline run.

graph LR
    admin("fa:fa-user GL_User admin")
    newUser("fa:fa-user GL_User alice")
    project("fa:fa-diagram-project GL_Project myorg/backend")
    pipeline("fa:fa-angles-right GL_Pipeline myorg/backend#42")

    admin -.->|GL_Created| newUser
    admin -.->|GL_Created| project
    admin -.->|GL_Created| pipeline
Loading