Uses of Class
com.gpudb.protocol.QueryGraphResponse
-
Packages that use QueryGraphResponse Package Description com.gpudb com.gpudb.protocol -
-
Uses of QueryGraphResponse in com.gpudb
Methods in com.gpudb that return QueryGraphResponse Modifier and Type Method Description QueryGraphResponseGPUdb. queryGraph(QueryGraphRequest request)Employs a topological query on a graph generated a-priori bycreateGraphand returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what's been provided to the endpoint; providing edges will return nodes and providing nodes will return edges.QueryGraphResponseGPUdb. queryGraph(String graphName, List<String> queries, List<String> restrictions, String adjacencyTable, int rings, Map<String,String> options)Employs a topological query on a graph generated a-priori bycreateGraphand returns a list of adjacent edge(s) or node(s), also known as an adjacency list, depending on what's been provided to the endpoint; providing edges will return nodes and providing nodes will return edges. -
Uses of QueryGraphResponse in com.gpudb.protocol
Methods in com.gpudb.protocol that return QueryGraphResponse Modifier and Type Method Description QueryGraphResponseQueryGraphResponse. setAdjacencyListIntArray(List<Long> adjacencyListIntArray)The adjacency entity integer ID: either edge IDs per node requested (if using QUERY_EDGE_ID or QUERY_NODE1_ID and QUERY_NODE2_ID in the input) or two node IDs per edge requested (if using QUERY_NODE_ID in the input).QueryGraphResponseQueryGraphResponse. setAdjacencyListStringArray(List<String> adjacencyListStringArray)The adjacency entity string ID: either edge IDs per node requested (if using QUERY_EDGE_NAME or QUERY_NODE1_NAME and QUERY_NODE2_NAME in the input) or two node IDs per edge requested (if using QUERY_NODE_NAME in the input).QueryGraphResponseQueryGraphResponse. setAdjacencyListWktArray(List<String> adjacencyListWktArray)The adjacency entity WKTPOINT or WKTLINE ID: either edge IDs per node requested (if using QUERY_EDGE_WKTLINE or QUERY_NODE1_WKTPOINT and QUERY_NODE2_WKTPOINT in the input) or two node IDs per edge requested (if using QUERY_NODE_WKTPOINT in the input).QueryGraphResponseQueryGraphResponse. setInfo(Map<String,String> info)Additional information.QueryGraphResponseQueryGraphResponse. setResult(boolean result)Indicates a successful query.
-