File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
DataStax Graph Fluent API
2
2
=========================
3
3
4
- The fluent API adds graph features to the core driver::
4
+ The fluent API adds graph features to the core driver:
5
5
6
6
* A TinkerPop GraphTraversalSource builder to execute traversals on a DSE cluster
7
7
* The ability to execution traversal queries explicitly using execute_graph
Original file line number Diff line number Diff line change @@ -86,10 +86,10 @@ You can resume the pagination when executing a new query by using the :attr:`.Re
86
86
results = session.execute(statement)
87
87
88
88
# save the paging_state somewhere and return current results
89
- session ['paging_stage'] = results.paging_state
89
+ web_session ['paging_stage'] = results.paging_state
90
90
91
91
92
92
# resume the pagination sometime later...
93
93
statement = SimpleStatement(query, fetch_size=10)
94
- ps = session ['paging_state']
94
+ ps = web_session ['paging_state']
95
95
results = session.execute(statement, paging_state=ps)
You can’t perform that action at this time.
0 commit comments