Hi sir Because of your interview preparation playlist I got offer with 70% hike having 3YOE in short span of time able to revise all my past work topics in your videos.❤❤❤❤❤❤ Thank you very much for the content.
What would be the use case where we need LWC to invoke the batch class ? I feel like that inherited sharing APEX requires a separate video on how it will look like in real. I looked at couple of order of execution diagrams but they don't mention about these queueable / batch runs ---> under which category on diagrams will they fall in ?
I think we cannot chain the wire method directly. But if we use refresh apex we can do so. I listened to your solution after being given an answer but that is not chaining i guess because whenever system load all wire method called but yes because of properties change the other wire method called
@@SolitudeStar2226 yes, however, on the first call, your parameter will be blank, so the wire method will not return anything (you need to take care in your apex class for this), and when the parameter value changes, then again the wire decorator will be called.
Hi sir Because of your interview preparation playlist I got offer with 70% hike having 3YOE in short span of time able to revise all my past work topics in your videos.❤❤❤❤❤❤ Thank you very much for the content.
Congratulations😊 Best of luck for your future journey
70% hike ...lolz ...that means you were underpaid to start off with.
@@awesomekj5812 still looking for the opportunities, will see if I get more then my current offer, Thank you
Really helpful this video ,tqqq Ankit. some scenarios i never encountered .
Glad you found it helpful.
For Field Level Security,we can implement SOQL Query in User Context as follows
List acc = [SELECT Id,Custom_field__c FROM Account WITH USER_MODE];
Yes think about other options as well
What would be the use case where we need LWC to invoke the batch class ?
I feel like that inherited sharing APEX requires a separate video on how it will look like in real.
I looked at couple of order of execution diagrams but they don't mention about these queueable / batch runs ---> under which category on diagrams will they fall in ?
1. To submit bulk processing
2. Will plan for it
3. Look for last step in order of execution
@@TechJourneyWithAnkit For # 3 , you mean logic automation thats runs after data is finally committed to database ?
@@awesomekj5812 yes all aysnc operations like sending email , async apex and flows
Since class B explicitly having without sharing keyword, it will run in the system context. Class A will not override the explicitly used keyword.
I think we cannot chain the wire method directly. But if we use refresh apex we can do so.
I listened to your solution after being given an answer but that is not chaining i guess because whenever system load all wire method called but yes because of properties change the other wire method called
@@SolitudeStar2226 yes, however, on the first call, your parameter will be blank, so the wire method will not return anything (you need to take care in your apex class for this), and when the parameter value changes, then again the wire decorator will be called.
SOQL query
1)
SELECT id ,Max(Amount) from Opportunity
2)
SELECT Id, Name, CreatedDate
FROM Account
WHERE CreatedDate = YESTERDAY
Correct
1.SELECT id,amount from opportunity Order By amount desc LIMIT 1
2.SELECT id,Name,createdDate from Account WHERE createdDate = YESTERDAY
Correct think about first one using Aggregate query