Function searchLineageGraphNode

  • Search all labels within a lineage graph on all available levels. Returns result per level.

    Parameters

    • id: string

      The qri for root node.

    • query: { collapse?: boolean; filter: string; up?: number }

      an object with query parameters

      • Optionalcollapse?: boolean

        To collapse internal nodes, set to true, false otherwise.

      • filter: string

        The expression that matches the SCIM filter format. The filter has to be encoded. The currently supported attribute is "label", attribute operator "co" (contains), and grouping operator "or". Example: 'label co "label1" or label co "label2"'. The search queries are case insensitive.

      • Optionalup?: number

        The number of upstream levels of nodes retrieved to search. (5 if not provided, -1 means unlimited)

    • Optionaloptions: ApiCallOptions

    Returns Promise<SearchLineageGraphNodeHttpResponse>

    searchLineageGraphNode(
    "qri:app:sense://e5c651d5-1198-45a2-be5d-f016cee0baf5",
    {
    filter: "label co \"label1\" or label co \"label2\""
    }
    )

    SearchLineageGraphNodeHttpError