@gbl-uzh/platform 0.4.8 → 0.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -0
- package/dist/nexus.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1735,6 +1735,9 @@ async function getPlayerResult(args, ctx) {
|
|
|
1735
1735
|
player: {
|
|
1736
1736
|
id: args.playerId
|
|
1737
1737
|
}
|
|
1738
|
+
},
|
|
1739
|
+
orderBy: {
|
|
1740
|
+
createdAt: "desc"
|
|
1738
1741
|
}
|
|
1739
1742
|
});
|
|
1740
1743
|
return {
|
|
@@ -1912,6 +1915,9 @@ async function getPlayerTransactions(args, ctx) {
|
|
|
1912
1915
|
player: {
|
|
1913
1916
|
id: ctx.user.sub
|
|
1914
1917
|
}
|
|
1918
|
+
},
|
|
1919
|
+
orderBy: {
|
|
1920
|
+
createdAt: "desc"
|
|
1915
1921
|
}
|
|
1916
1922
|
});
|
|
1917
1923
|
return playerActions;
|
package/dist/nexus.js
CHANGED