Uses of Class
com.gpudb.protocol.QueryGraphRequest
-
Packages that use QueryGraphRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of QueryGraphRequest in com.gpudb
Methods in com.gpudb with parameters of type QueryGraphRequest 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. -
Uses of QueryGraphRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return QueryGraphRequest Modifier and Type Method Description QueryGraphRequestQueryGraphRequest. setAdjacencyTable(String adjacencyTable)Name of the table to store the resulting adjacencies, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria.QueryGraphRequestQueryGraphRequest. setGraphName(String graphName)Name of the graph resource to query.QueryGraphRequestQueryGraphRequest. setOptions(Map<String,String> options)Additional parameters.QueryGraphRequestQueryGraphRequest. setQueries(List<String> queries)Nodes or edges to be queried specified using query identifiers.QueryGraphRequestQueryGraphRequest. setRestrictions(List<String> restrictions)Additional restrictions to apply to the nodes/edges of an existing graph.QueryGraphRequestQueryGraphRequest. setRings(int rings)Sets the number of rings around the node to query for adjacency, with '1' being the edges directly attached to the queried node.
-