@@ -35,7 +35,7 @@ describe('On query hooks tests', () => {
3535 } else if ( ctx . operation === 'update' ) {
3636 updateHookCalled = true ;
3737 }
38- return ctx . query ( ctx . args ) ;
38+ return ctx . proceed ( ctx . args ) ;
3939 } ,
4040 } ) ;
4141
@@ -61,7 +61,7 @@ describe('On query hooks tests', () => {
6161 hooksCalled = true ;
6262 expect ( ctx . model ) . toBe ( 'User' ) ;
6363 }
64- return ctx . query ( ctx . args ) ;
64+ return ctx . proceed ( ctx . args ) ;
6565 } ,
6666 } ) ;
6767 await expect (
@@ -84,7 +84,7 @@ describe('On query hooks tests', () => {
8484 hooksCalled = true ;
8585 expect ( ctx . model ) . toBe ( 'User' ) ;
8686 expect ( ctx . operation ) . toBe ( 'findFirst' ) ;
87- return ctx . query ( ctx . args ) ;
87+ return ctx . proceed ( ctx . args ) ;
8888 } ,
8989 } ) ;
9090 await expect (
@@ -106,9 +106,9 @@ describe('On query hooks tests', () => {
106106 onQuery : async ( ctx ) => {
107107 if ( ctx . model === 'User' && ctx . operation === 'findFirst' ) {
108108 hooksCalled = true ;
109- return ctx . query ( { where : { id : 'non-exist' } } ) ;
109+ return ctx . proceed ( { where : { id : 'non-exist' } } ) ;
110110 } else {
111- return ctx . query ( ctx . args ) ;
111+ return ctx . proceed ( ctx . args ) ;
112112 }
113113 } ,
114114 } ) ;
@@ -132,11 +132,11 @@ describe('On query hooks tests', () => {
132132 onQuery : async ( ctx ) => {
133133 if ( ctx . model === 'User' && ctx . operation === 'findFirst' ) {
134134 hooksCalled = true ;
135- const result = await ctx . query ( ctx . args ) ;
135+ const result = await ctx . proceed ( ctx . args ) ;
136136 ( result as any ) . happy = true ;
137137 return result ;
138138 } else {
139- return ctx . query ( ctx . args ) ;
139+ return ctx . proceed ( ctx . args ) ;
140140 }
141141 } ,
142142 } ) ;
@@ -159,10 +159,10 @@ describe('On query hooks tests', () => {
159159 onQuery : async ( ctx ) => {
160160 if ( ctx . model === 'User' && ctx . operation === 'create' ) {
161161 hooksCalled = true ;
162- await ctx . query ( ctx . args ) ;
162+ await ctx . proceed ( ctx . args ) ;
163163 throw new Error ( 'trigger error' ) ;
164164 } else {
165- return ctx . query ( ctx . args ) ;
165+ return ctx . proceed ( ctx . args ) ;
166166 }
167167 } ,
168168 } ) ;
@@ -194,7 +194,7 @@ describe('On query hooks tests', () => {
194194 id : 'test-plugin' ,
195195 onQuery : ( ctx ) => {
196196 findHookCalled = true ;
197- return ctx . query ( ctx . args ) ;
197+ return ctx . proceed ( ctx . args ) ;
198198 } ,
199199 } ) ;
200200
0 commit comments