File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -1727,21 +1727,6 @@ describe("firestore-pipelines", () => {
17271727 console . log ( results ) ;
17281728 }
17291729
1730- async function unionStageStable ( ) {
1731- // [START union_stage_stable]
1732- const results = await execute ( db . pipeline ( )
1733- . collection ( "cities/SF/restaurants" )
1734- . where ( field ( "type" ) . equal ( "Chinese" ) )
1735- . union ( db . pipeline ( )
1736- . collection ( "cities/NY/restaurants" )
1737- . where ( field ( "type" ) . equal ( "Italian" ) ) /*, { stable: true } */ )
1738- . where ( field ( "rating" ) . greaterThanOrEqual ( 4.5 ) )
1739- . sort ( field ( "__name__" ) . descending ( ) )
1740- ) ;
1741- // [END union_stage_stable]
1742- console . log ( results ) ;
1743- }
1744-
17451730 async function unnestStage ( ) {
17461731 // [START unnest_stage]
17471732 const results = await execute ( db . pipeline ( )
You can’t perform that action at this time.
0 commit comments