Flutter Parse Server Sdk not saving the second object in the table (class)

494 Views Asked by At

this function takes a ServicePoint object as argument, which has the following attributes:

  • adminId (String)
  • name (String)
  • serviceType (enum)

I want this function to create a new Table with name: "name+adminId". This is achieved. Also I want this function to create a new Table (if it is not there already) by the name ServicePoints. ServicePoints stores the relationship between user (with objectId = adminId) and the new Table. To achieve this, I set "serviceTable" attribute with value as the new Table created, acting as a pointer.

When I run the code first time, I achieve the required tables. But, when I run the function second time, it doesn't add the new row/record to ServicePoints table. I don't know why.

UPDATE I found that set ParseObject operation is the culprit. But, to my surprize, it executes successfully for the very first time. But fails every next time. This is really absurd behaviour from parse_server_sdk_flutter.

Future<bool> createServicePoint(ServicePoint servicePoint) async {
    String newServicePointName = servicePoint.name + servicePoint.adminId;
    var newServiceTable = ParseObject(newServicePointName);
    var response = await newServiceTable.save();
    if (response.success) {
      print('Now adding new row to ServicePoints table');
      var servicePointsTable = ParseObject('ServicePoints')
        ..set<String>("serviceName", servicePoint.name)
        ..set<String>("adminId", servicePoint.adminId)
        ..set<String>("serviceType", _typeToLabel[servicePoint.serviceType])
        ..set<ParseObject>("serviceTable", newServiceTable);
      var recentResponse = await servicePointsTable.save();
      return recentResponse.success;
    } else {
      return false;
    }
  }
1

There are 1 best solutions below

0
On

If anyone runs into this problem, you need to check the result after saving the ParseObject. If there is error like "Can't save into non-existing class/table", then just go to the dashboard and create the table first.