Answers for "using update in graphql"

SQL
0

soql update query

SOQL is a query language. It has no support for operations besides Read. If you want to perform other CRUD operations, you will need to make different calls. Within Apex, that would look like:

List<MyObject__c> records = [SELECT ... FROM MyObject__c WHERE ...];
for (MyObject__c record : records)
{
    // set some fields
}
update records;
Posted by: Guest on August-26-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language