Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
* Support for datetime, date, and time comparisons with operators: `gt`, `lt`, `ge`, `le`, `eq`, `ne`, `between`, `is_in`
* Proper timezone handling for datetime comparisons
* Type-safe temporal value handling with TypeGuard annotations
* Temporal value classes: `DateTimeValue`, `DateValue`, `TimeValue` for explicit temporal types
* Wire protocol support for JSON serialization of temporal predicates
* Comprehensive documentation: datetime filtering guide, wire protocol reference, and examples notebook
* CI: Enable notebook validation by default in docs builds (set VALIDATE_NOTEBOOK_EXECUTION=0 to disable)
* CI: Run notebook validation after doc generation for faster error detection

Expand Down
450 changes: 450 additions & 0 deletions demos/gfql/temporal_predicates.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/docker/build-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ esac
# Validate notebooks after building docs
NOTEBOOKS_TO_VALIDATE=(
"/docs/test_notebooks/test_graphistry_import.ipynb"
"/docs/source/demos/gfql/temporal_predicates.ipynb"
)

for notebook in "${NOTEBOOKS_TO_VALIDATE[@]}"; do
Expand Down
9 changes: 9 additions & 0 deletions docs/source/api/gfql/predicates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,12 @@ Temporal
:undoc-members:
:show-inheritance:
:noindex:

Temporal Values
---------------

.. automodule:: graphistry.compute.ast_temporal
:members:
:undoc-members:
:show-inheritance:
:noindex:
Loading
Loading