anymal-protocol 1.0.35 → 1.0.36
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 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -378,10 +378,8 @@ function useFetchNotifications() {
|
|
|
378
378
|
const query = `
|
|
379
379
|
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
380
380
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
381
|
-
_docID
|
|
382
381
|
anymalTxId
|
|
383
382
|
title
|
|
384
|
-
read
|
|
385
383
|
_group {
|
|
386
384
|
_docID
|
|
387
385
|
source
|
|
@@ -411,7 +409,7 @@ function useFetchNotifications() {
|
|
|
411
409
|
timeAddedUtc: "DESC"
|
|
412
410
|
}
|
|
413
411
|
];
|
|
414
|
-
const groupBy = ["anymalTxId", "title"
|
|
412
|
+
const groupBy = ["anymalTxId", "title"];
|
|
415
413
|
const variables = { filter, groupBy, order };
|
|
416
414
|
const response = await fetch(endpoint, {
|
|
417
415
|
method: "POST",
|
package/dist/index.mjs
CHANGED
|
@@ -333,10 +333,8 @@ function useFetchNotifications() {
|
|
|
333
333
|
const query = `
|
|
334
334
|
query AnymalNotification($groupBy: [AnymalNotificationField!], $filter: AnymalNotificationFilterArg, $order: [AnymalNotificationOrderArg]) {
|
|
335
335
|
AnymalNotification(groupBy: $groupBy, filter: $filter, order: $order) {
|
|
336
|
-
_docID
|
|
337
336
|
anymalTxId
|
|
338
337
|
title
|
|
339
|
-
read
|
|
340
338
|
_group {
|
|
341
339
|
_docID
|
|
342
340
|
source
|
|
@@ -366,7 +364,7 @@ function useFetchNotifications() {
|
|
|
366
364
|
timeAddedUtc: "DESC"
|
|
367
365
|
}
|
|
368
366
|
];
|
|
369
|
-
const groupBy = ["anymalTxId", "title"
|
|
367
|
+
const groupBy = ["anymalTxId", "title"];
|
|
370
368
|
const variables = { filter, groupBy, order };
|
|
371
369
|
const response = await fetch(endpoint, {
|
|
372
370
|
method: "POST",
|
package/package.json
CHANGED