@@ -7,23 +7,29 @@ export const respondOnServiceRequest = async (input: FieldResolveInput) =>
7
7
resolverFor ( 'UserMutation' , 'respondOnServiceRequest' , async ( args , src ) =>
8
8
errMiddleware ( async ( ) => {
9
9
sourceContainUserIdOrThrow ( src ) ;
10
- if ( args . input ?. answer === BookStatus . PENDING ) {
10
+ if ( args ? .input ?. answer === BookStatus . PENDING ) {
11
11
throw new GlobalError ( 'answer cannot be pending' , import . meta. url ) ;
12
12
}
13
- MongoOrb ( 'Bookings' )
13
+ await MongoOrb ( 'Bookings' )
14
14
. collection . find ( { _id : { $in : args . input . bookIds } , answeredAt : { $exists : false } } ) . toArray ( )
15
15
. then ( async ( books ) => {
16
16
if ( ! books || books . length < 1 ) {
17
17
throw new GlobalError ( `cannot find anyone books for id: ${ args . input . bookIds } ` , import . meta. url ) ;
18
18
}
19
- MongoOrb ( 'Services' )
19
+ await MongoOrb ( 'Services' )
20
20
. collection . find ( { _id : { $in : books . map ( ( b ) => b . services ) . flatMap ( innerArray => innerArray ) } , ownerId : src . userId || src . _id } )
21
21
. toArray ( ) . then ( ( r ) => {
22
22
if ( ! r || r . length < 1 ) {
23
23
throw new GlobalError ( 'you can answer only on yours services' , import . meta. url ) ;
24
24
}
25
25
} ) ;
26
+ if ( args ?. input ?. answer === BookStatus . DECLINED ) {
27
+ MongoOrb ( 'Services' )
28
+ . collection . updateMany ( { _id : { $in : books . map ( ( b ) => b . services ) . flatMap ( innerArray => innerArray ) } , ownerId : src . userId || src . _id } , { $set : { taken : false } } )
29
+ } ;
26
30
} ) ;
31
+
32
+
27
33
return MongoOrb ( 'Bookings' )
28
34
. collection . updateMany (
29
35
{ _id : { $in : args . input . bookIds } } ,
0 commit comments