Reductions
Reductions
Is there any progress on this pull request?
Aqueduct does not support mysql out of the box (the ORM does not work with it).
So as you can see in the definition of get: ```dart Future get(String path, {Map headers, Map query}) { return execute("GET", path, headers: headers, query: query); } ``` Your first...
If you want multiple versions of dart I would recommend using [asdf](https://asdf-vm.com/#/). As for solution without downgrading you could override the aqueduct dependency: ``` dependency_overrides: aqueduct: git: url: https://github.com/stablekernel/aqueduct path:...
You can not do that using the ORM at the moment and it would be a big undertaking for it to be implemented. Also your query will be better described...
This is if you don't want to include the company rank: ```dart bool isOwner = userId != null; companyScores.user.sort((u1, u2) => u1.card.length - u2.card.length); return companyScores.user.map((user) => UserScore( userId: user.id,...
This is if you want score: ```dart bool isOwner = userId != null; companyScores.user.sort((u1, u2) => u1.card.length - u2.card.length); final userRank = []; for(var i = 0; i < companyScores.user.length;...
In the `_Partner` model you seems to have a propery `segments` which type is null in the migration. Can you post the model so I can help you fix it?
Yes it would. But it would not be merged as the framework is no longer supported. Run away while you have an option.
You can do this by checking the query in the postgresql logs.