Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI 1.0.0

Prefix Reserved
dotnet add package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI --version 1.0.0
                    
NuGet\Install-Package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI --version 1.0.0
                    
#r "nuget: Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI&version=1.0.0
                    
Install as a Cake Tool

Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI

A NuGet package providing models and helper classes for interacting with the DataMiner Relationships solution from within custom GQI data sources used in Dashboards and Low-Code Apps.

Getting Started

Prerequisites: A running DataMiner 10.5.9+ system with the SDM Registration package installed.

Obtain an IRelationshipManager from the OnInitInputArgs provided in your GQI data source's OnInit method and store it for use across the data source lifecycle. Always dispose it in OnDestroy.

Set up the manager in a GQI data source:

using Skyline.DataMiner.Analytics.GenericInterface;
using Skyline.DataMiner.Solutions.Relationships;

[GQIMetaData(Name = "My Relationship Data Source")]
public class MyDataSource : IGQIDataSource, IGQIOnInit, IGQIOnDestroy
{
    private IRelationshipManager _manager;

    public OnInitOutputArgs OnInit(OnInitInputArgs args)
    {
        _manager = args.GetRelationshipManager();
        return new OnInitOutputArgs();
    }

    public OnDestroyOutputArgs OnDestroy(OnDestroyInputArgs args)
    {
        _manager?.Dispose();
        return new OnDestroyOutputArgs();
    }
}

Query directly connected entities:

var neighbors = _manager.From(elementA).GetNeighbors();

Traverse the graph up to N hops:

var results = _manager.From(elementA).Traverse(maxDepth: 3);
foreach (var result in results)
{
    // result.Entity, result.Depth, result.Via
}

For more details see the full documentation.

About

Contains the models and helper classes to interact with the relationships solution.

About DataMiner

DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.

The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.

A unique catalog of 7000+ connectors already exists. In addition, you can leverage DataMiner Development Packages to build your own connectors (also known as "protocols" or "drivers").

Note See also: About DataMiner.

About Skyline Communications

At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 93 8/13/2026