@utaba/deep-memory-storage-cosmosdb 0.17.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -12
- package/dist/index.cjs +409 -73
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +385 -49
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -181,11 +181,11 @@ declare class CosmosDbProvider implements StorageProvider, GraphTraversalProvide
|
|
|
181
181
|
*
|
|
182
182
|
* The server-side step direction is fixed to `'both'` (catches every edge
|
|
183
183
|
* in either direction). The directional + bidirectional filter is applied
|
|
184
|
-
* client-side per hop — i.e. `direction: '
|
|
184
|
+
* client-side per hop — i.e. `direction: 'out'` includes inbound edges
|
|
185
185
|
* where `bidirectional` is true. The CosmosDB Gremlin compiler does not
|
|
186
186
|
* natively express the `union(outE, inE.has(bidirectional))` shape that
|
|
187
187
|
* would push this filter server-side, so it stays client-side; the
|
|
188
|
-
* observable contract (which edges count toward
|
|
188
|
+
* observable contract (which edges count toward `'out'` given
|
|
189
189
|
* bidirectionality) is preserved.
|
|
190
190
|
*
|
|
191
191
|
* Round-trips per call: `options.depth` (one per layer). The previous BFS
|
package/dist/index.d.ts
CHANGED
|
@@ -181,11 +181,11 @@ declare class CosmosDbProvider implements StorageProvider, GraphTraversalProvide
|
|
|
181
181
|
*
|
|
182
182
|
* The server-side step direction is fixed to `'both'` (catches every edge
|
|
183
183
|
* in either direction). The directional + bidirectional filter is applied
|
|
184
|
-
* client-side per hop — i.e. `direction: '
|
|
184
|
+
* client-side per hop — i.e. `direction: 'out'` includes inbound edges
|
|
185
185
|
* where `bidirectional` is true. The CosmosDB Gremlin compiler does not
|
|
186
186
|
* natively express the `union(outE, inE.has(bidirectional))` shape that
|
|
187
187
|
* would push this filter server-side, so it stays client-side; the
|
|
188
|
-
* observable contract (which edges count toward
|
|
188
|
+
* observable contract (which edges count toward `'out'` given
|
|
189
189
|
* bidirectionality) is preserved.
|
|
190
190
|
*
|
|
191
191
|
* Round-trips per call: `options.depth` (one per layer). The previous BFS
|