Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Problem saving production #204

Closed
ccfiel opened this issue Jun 22, 2019 · 6 comments
Closed

Problem saving production #204

ccfiel opened this issue Jun 22, 2019 · 6 comments

Comments

@ccfiel
Copy link

ccfiel commented Jun 22, 2019

Saving object in emulator works fine but in production (installation coming from play store) saving object does not work object.save(). Any ideas why?

@phillwiggins
Copy link
Member

phillwiggins commented Jun 23, 2019 via email

@ccfiel
Copy link
Author

ccfiel commented Jun 23, 2019

Hello @phillwiggins ,
I now know the problem I think its a bug in the package. If you have a relation field in a class the object cannot be save.

I/flutter (11816): ╭-- Parse Request
I/flutter (11816): curl -X PUT -H 'content-type: text/plain; charset=utf-8' -H 'user-agent: Flutter Parse SDK 1.0.21' -H 'X-Parse-Application-Id: VVPshByb847G0tuLD1s4inoBks90R8GQO4xZci1j' -H 'X-Parse-Session-Token: r:619fff28e5b093eeba95dfb25c404676' -d '{"objectId":"SmPQ524Hsv","reading_kwh":0.19,"reading_date":{"__type":"Date","iso":"2019-06-13T15:01:47.546Z"},"last_updated":{"__type":"Date","iso":"2019-06-13T15:01:47.546Z"},"device_name":"ESP_2M_807D3A7CEA91","readings":{"__type":"Pointer","className":"ReadingModel","objectId":null},"status":"ON","description":" 1 Unity","ACL":{"RxoqgCt41L":{"read":true,"write":true},"NzJxkcUxd2":{"read":true,"write":true}}}' https://parse.matik.app/parse/classes/DeviceModel/SmPQ524Hsv
I/flutter (11816): 
I/flutter (11816):  https://parse.matik.app/parse/classes/DeviceModel/SmPQ524Hsv
I/flutter (11816): ╰--
I/flutter (11816): ╭-- Parse Response
I/flutter (11816): Class: DeviceModel
I/flutter (11816): Function: ParseApiRQ.save
I/flutter (11816): Status Code: 111
I/flutter (11816): Type: IncorrectType
I/flutter (11816): Error: schema mismatch for DeviceModel.readings; expected Relation<ReadingModel> but got Pointer<ReadingModel>
I/flutter (11816): ╰-- 
I/flutter (11816):  

So what I did I edit the package in my local to remove the relation. In parse_base.dart in line 65 so that is the reason it work in my local but not in our CI/CD production apk.

    if (forApiRQ) {
      map.remove(keyVarCreatedAt);
      map.remove('readings'); <======== added this one.
      map.remove(keyVarUpdatedAt);
      map.remove(keyVarClassName);
      //map.remove(keyVarAcl);
      map.remove(keyParamSessionToken);
    }

@RodrigoSMarques
Copy link
Contributor

RodrigoSMarques commented Jun 24, 2019

Helio @ccfiel.

Log show your pointer the ObjectId is null. it is being filled out

I am working on project with pointer and it is working properly. Pointers did not work on lib and I was the one responsible for fixing it. I see that you are using ACL. Are you allowed on the Pointer object?

Can you post your code?

@ccfiel
Copy link
Author

ccfiel commented Jun 24, 2019

Hello @RodrigoSMarques ,

I do no have a pointer field what I have is a class name DeviceModel and this class have a field readings which is type relation to ReadingModel.

Then when I edit the field description in DeviceModel I got the error which I posted above.
Below is my code editing the description field.

 Future<String> setName(String name) async {
    var apiResponse = await ParseObject('DeviceModel').getObject(id);
    String resp = '';
    if (apiResponse.success) {
      apiResponse.result.set('description', name);
      apiResponse.result.save();
    } else {
      resp = apiResponse.error.message;
    }
    description = name;
    return resp;
  }

This code will not work if DeviceModel class has a field with e type relation to ReadingModel.

@RodrigoSMarques
Copy link
Contributor

Hello @ccfiel .

Version 21 does not support Parse Relation, only Pointers. This may be the reason for the problem.

Parse Relation were added in version 22.

@ccfiel
Copy link
Author

ccfiel commented Jun 24, 2019

Hello @RodrigoSMarques,

Thanks! I just remove relation to my class because version 22 is not yet stable.

Cheers,
Chris

@ccfiel ccfiel closed this as completed Jun 24, 2019
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants