Akshay
Akshay
how i can use this package with angular? showing Module not found: Error: Can't resolve 'fs' Module not found: Error: Can't resolve 'path'
@davevanhoorn Yes, now I am using emptyCart mutation as a workaround.
@brandonqcode it can be fixed by updating plugin code. in file **wp-graphql-woocommerce-develop/includes/mutation/class-order-update.php** line no **142**. Change > $order->set_status( $input['status'] ); with this > $order->update_status( $input['status'] ); @kidunot89 i have created...
Hi, thanks for the response. I have added the custom product type. followed this nice blog post https://jacobarriola.com/post/graphql-woocommerce-connection-product-bundles This is the snippet from this blog post. add_filter( 'graphql_product_connection_query_args', function (...
@kidunot89 Yes I have tried this query and able to get auction products in products query. but the thing is, when I add this product to the cart then this...
without the following condition in graphql_product_connection_query_args, I am not able to get the auction products using where: { type: AUCTION }. if(isset($query_args['graphql_args']['where']['type']) && $query_args['graphql_args']['where']['type'] == 'auction'){ $query_args['auction_arhive'] = true; $query_args['show_past_auctions']...
@jacobarriola Yes i have added new product type to the product types enum. add_filter( 'graphql_product_types_enum_values', function ( $values ) { $values['AUCTION'] = [ 'value' => 'auction', 'description' => 'A auction...
> @akshaykatale99 does using the following without the conditional statement resolve the issues with cart items without breaking the existing products connection queries? > > ``` > $query_args['auction_archive'] = true;...
If I check the downloadUrl from the console and download that installable file. it contains 1 file hotcodepush.json and www dir. in www dir there are only three files instead...
Hi, @tcagkansokmen, if you are still looking for it then please check this https://github.com/akshaykatale99/react-native-daterange-picker . i have forked and updated it to open calender in modal Thanks