anymal-protocol 1.0.28 → 1.0.30
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -374,7 +374,7 @@ function useFetchNotifications() {
|
|
|
374
374
|
}
|
|
375
375
|
try {
|
|
376
376
|
const query = `
|
|
377
|
-
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg) {
|
|
377
|
+
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
378
378
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
379
379
|
anymalTxId
|
|
380
380
|
title
|
package/dist/index.mjs
CHANGED
|
@@ -329,7 +329,7 @@ function useFetchNotifications() {
|
|
|
329
329
|
}
|
|
330
330
|
try {
|
|
331
331
|
const query = `
|
|
332
|
-
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg) {
|
|
332
|
+
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
333
333
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
334
334
|
anymalTxId
|
|
335
335
|
title
|
package/package.json
CHANGED