docs(gfql): Rename chain() to gfql() throughout documentation#748
Merged
Conversation
- Renamed all g.chain() references to g.gfql() - Renamed all g.chain_remote() references to g.gfql_remote() - Added migration notes to CHANGELOG.md - Updated method references in spec documentation - Preserved Chain class references (not method calls) - Manual inspection of each change for semantic correctness This change aligns with the deprecation of chain() methods in favor of the clearer gfql() naming convention. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Enhanced cypher_mapping.md introduction with clearer structure - Added GFQL-Only Super-Powers section highlighting unique features - Improved section headers and organization - Added comment to edge patterns table about upper-bound only - Reordered predicates table with literal first - Added DataFrame-native explanation to translate.rst - Added reference to loading-graph-data guide These improvements make the documentation clearer and more comprehensive for users migrating from Cypher to GFQL. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Removed the reference to :ref:`loading-graph-data` as the file doesn't exist yet. The DataFrame-native explanation remains to help users understand GFQL's approach. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
lmeyerov
added a commit
that referenced
this pull request
Sep 26, 2025
…chain() - Replaced all .chain() calls with .gfql() - Replaced all .chain_remote() calls with .gfql_remote() - Updated references to chain_remote() and chain_remote_shape() in text - Updated code examples in markdown cells Affected notebooks: - benchmark_hops_cpu_gpu.ipynb: 31 chain() replacements - gfql_remote.ipynb: 1 chain() + 8 chain_remote() replacements - gfql_validation_fundamentals.ipynb: 6 chain() replacements - GPU_memory_consumption_tutorial.ipynb: 1 chain() replacement - temporal_predicates.ipynb: 7 chain() replacements This aligns notebooks with the API deprecation from PRs #748 and #750. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR renames all
chain()andchain_remote()method calls togfql()andgfql_remote()throughout the documentation, implementing the deprecation announced in the CHANGELOG.Changes
Method Renames
g.chain()references tog.gfql()g.chain_remote()references tog.gfql_remote()Documentation Updates
Migration Guide
Added to CHANGELOG.md:
Process
Related PRs
Testing
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com