Hi Skuid Team,
WE NEED YOUR HELP !!
we are getting this below error while loading skuid page which has a skuid table in it,
An error occurred while attempting to perform the following SOQL query: SELECT id,name,createddate FROM Account ORDER BY , Some_Custom_Field_c DESC NULLS LAST LIMIT 51 Error:unexpected token: ‘,’
as per the account model, we have added “CreatedDate DESC” into this model property “Fields to order records by”.
and this Some_Custom_Field__c, we have made this field sort through table column header. I have put model row limit to 50 but it is showing 51 in the query
this soql query should run like below but it is throwing error,
SELECT id,name,createddate FROM Account ORDER BY CreatedDate, Some_Custom_Field_c DESC NULLS LAST LIMIT 50
note: this error is coming for only one user and all other user with same profile are woking fine.