SNIK Graph - v25.01
    Preparing search index...

    Variable default

    default: {
        filter: string[][];
        id: string;
        initialView: LayoutJson;
        legend: string;
        links: {
            featureRequest: string;
            feedbackOntology: string;
            homepage: string;
            metamodel: string;
            rdfBrowser: string;
            sparqlEndpoint: string;
            youtube: string;
        };
        name: string;
        snik: {
            center: string;
            centerDepth: number;
            defaultSubOntologies: string[];
            helperGraphs: string[];
        };
        sparql: {
            endpoint: string;
            graph: string;
            instances: boolean;
            queries: {
                nodes: (from: any) => string;
                triples: (
                    from: any,
                    fromNamed: any,
                    virtualTriples: any,
                    instances: any,
                ) => string;
            };
        };
        style: {
            color: (node: string | NodeSingular) => string;
            colorMap: Map<string, string>;
            shape: (node: NodeSingular) => string;
        };
        title: string;
    }

    Type Declaration

    • filter: string[][]
    • id: string
    • initialView: LayoutJson
    • legend: string
    • name: string
    • snik: {
          center: string;
          centerDepth: number;
          defaultSubOntologies: string[];
          helperGraphs: string[];
      }
    • sparql: {
          endpoint: string;
          graph: string;
          instances: boolean;
          queries: {
              nodes: (from: any) => string;
              triples: (
                  from: any,
                  fromNamed: any,
                  virtualTriples: any,
                  instances: any,
              ) => string;
          };
      }
    • style: {
          color: (node: string | NodeSingular) => string;
          colorMap: Map<string, string>;
          shape: (node: NodeSingular) => string;
      }
    • title: string