From 3fa7bc8864050c9ee7886974fcedbd6dca183d35 Mon Sep 17 00:00:00 2001 From: Leo Meyerovich Date: Thu, 23 Jul 2026 00:33:15 -0700 Subject: [PATCH] Mark illustrative GFQL indexing snippets as non-runnable --- docs/source/gfql/indexing.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/gfql/indexing.rst b/docs/source/gfql/indexing.rst index 369ee88f04..457dc28064 100644 --- a/docs/source/gfql/indexing.rst +++ b/docs/source/gfql/indexing.rst @@ -11,6 +11,8 @@ lifecycle: what the indexes are, what engages them, when they go stale, and what For the planner policy knobs and competitive benchmarks, see :doc:`Seeded Traversal Indexes `. +.. doc-test: skip + .. code-block:: python g = g.gfql_index_all() # pay once ... @@ -135,6 +137,8 @@ time). Consequences: glance whether a rebind knocked an index out. - Rebuild by calling ``gfql_index_all()`` again on the rebound ``g``. +.. doc-test: skip + .. code-block:: python g2 = g_indexed.edges(new_edges_df, "src", "dst")