You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/gfql/overview.rst
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,16 @@ Why GFQL?
10
10
11
11
GFQL addresses a critical gap in the data community by providing an in-process graph query language that operates at the compute tier. This means you can:
12
12
13
+
- **Tiny reachability map**:
14
+
15
+
.. graphviz::
16
+
17
+
digraph gfql_overview_toy {
18
+
rankdir=LR;
19
+
a -> b -> c -> d;
20
+
a [shape=box, style=filled, fillcolor=lightblue];
21
+
}
22
+
13
23
- **Graph search**: Easily and efficiently query and filter nodes and edges using a familiar syntax.
14
24
- **Avoid External Infrastructure**: Avoid calls to external infrastructures and eliminate the need for extra databases.
15
25
- **Leverage Existing Workflows**: Integrate with your current Python data science tools and libraries.
@@ -328,4 +338,3 @@ Access detailed documentation of GFQL's API:
328
338
- **Predicates**: Apply advanced filtering using predicates.
- :ref:`cuGraph <cugraph>` for GPU-accelerated FA2, a weaker version of Graphistry's live layout
114
114
- :ref:`igraph <igraph>` for CPU-based layouts, similar to GraphViz and with layouts that focus more on medium-sized social networks
115
115
116
+
Static Graphviz render (for docs/notebooks)
117
+
-------------------------------------------
118
+
119
+
When you need a quick static image without an interactive client, render directly with Graphviz. ``plot_static`` emits bytes that you can save or embed inline:
0 commit comments