-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
2840 lines (2359 loc) · 58 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema {
query: RootQueryType
mutation: RootMutationType
}
type _PricelistAccessMeta {
count: Int
}
type _PricelistValueMeta {
count: Int
}
"""Type for accepting add to cart attributes"""
input AddToCartInput {
buyerId: ID
cartId: ID
cartUrlkey: String
dropId: ID
items: [CartProductInput]
productId: ID
quantity: Float
}
"""A background_job"""
type BackgroundJob {
completedAt: DateTime
contactId: ID
createdAt: DateTime
dropId: ID
id: ID
orderId: ID
result: String
type: String
updatedAt: DateTime
}
"""A cart"""
type Cart {
_cartProductsMeta: CartProductsMeta @deprecated(reason: "Use _parentProductsMeta instead")
_parentProductsMeta: CartProductsMeta
buyer: User
buyerId: ID
cartProducts(
"""Number of elemts to retrieve, defaults to 100"""
first: Int = 100
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
): [CartProduct] @deprecated(reason: "Use parentProducts instead")
createdAt: DateTime
creatorType: String
drop: Drop
dropId: ID
guestId: ID
id: ID
isPrivate: Boolean
ownerId: ID
parentProducts(
"""Number of elemts to retrieve, defaults to 100"""
first: Int = 100
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
"""Order for returning products"""
orderBy: [CartProductModelOrder] = [ID_DESC]
): [CartProduct]
repId: ID
seller: User
sellerId: ID
updatedAt: DateTime
urlkey: String
}
"""Type for accepting cart filter values"""
input CartFilter {
buyerId: IdFilter
dropId: IdFilter
}
input CartInput {
buyerId: ID
cartProducts: [CartProductInput]
dropId: ID
guestId: ID
isPrivate: Boolean
repId: ID
}
"""Medata data for a list carts query"""
type CartMeta {
count: Int
}
"""Ordering options for cart lists"""
enum CartModelOrder {
"""Ascending by created_at"""
CREATED_AT_ASC
"""Descending by created_at"""
CREATED_AT_DESC
"""Ascending by updated_at"""
UPDATED_AT_ASC
"""Descending by updated_at"""
UPDATED_AT_DESC
}
"""A product in the cart with quantity"""
type CartProduct {
cart: Cart
cartId: ID
id: ID
product: Product
productId: ID
quantity: Float
"""Cart Product child entries"""
variants: [CartProduct]
}
input CartProductInput {
productId: ID!
quantity: Float
}
"""Ordering options for cart product lists"""
enum CartProductModelOrder {
"""Ascending by ID"""
ID_ASC
"""Descending by ID"""
ID_DESC
}
"""Medata data for a list cart products query"""
type CartProductsMeta {
appliedDiscount: Float
count: Int
currency: String
parentCount: Int
quantity: Float
summary: String
total: Float
}
"""A request to connect on the platform"""
type ConnectRequest {
acceptedAt: DateTime
createdAt: DateTime
id: ID
rejectedAt: DateTime
requesterUser: User
targetUser: User
updatedAt: DateTime
}
"""Type for accepting connect request filter values"""
input ConnectRequestModelFilter {
acceptedAt: DatetimeFilter
rejectedAt: DatetimeFilter
requesterUserId: IdFilter
requesterUserUrlkey: UrlkeyFilter
targetUserId: IdFilter
targetUserUrlkey: UrlkeyFilter
}
"""Ordering options for connect request lists"""
enum ConnectRequestModelOrder {
"""Ascending by ID"""
ID_ASC
"""Descending by ID"""
ID_DESC
}
"""contact"""
type Contact {
contactUserId: ID
currency: String
customId: String
defaultSupplier: Int
discount: Float
email: String
externalSystemId: ID
id: ID
img: [String]
"""Can the contact be invited or not"""
invite: Boolean
invoiceAddress: String
invoiceApartment: String
invoiceCity: String
invoiceCompany: String
invoiceCountry: String
invoiceFirstname: String
invoiceLastname: String
invoicePostalcode: String
"""
Access to all suppliers - can sell all products. Relevant for contact type sales rep.
"""
isSuperman: Int
"""
Access to all contacts - can sell to all customers. Relevant for contact type sales rep.
"""
isSuperwoman: Int
lastInvite: String
migrateOldId: String
name: String
notes: String
ownerId: ID
paymentBankCustom: String
paymentEmail: String
paymentIbanCustom: String
paymentMethod: String
paymentTaxCode: String
paymentVatCustom: String
phone: String
shippingAddress: String
shippingApartment: String
shippingCity: String
shippingCompany: String
shippingCountry: String
shippingFirstname: String
shippingLastname: String
shippingPostalcode: String
status: Int
termOfPayment: String
"""0 = Customer, 1 = Supplier, 2 = Sales Rep, 3 = Team Member"""
type: Int
urlkey: String
}
input ContactFilter {
contactUserId: IdFilter
ownerId: IdFilter
"""Full text search on contact entries"""
query: String
"""0 = Customer, 1 = Supplier, 2 = Sales Rep, 3 = Team Member"""
type: IntegerFilter
}
input ContactInput {
contactUserId: ID
currency: String
customId: String
defaultSupplier: Int
discount: Float
email: String
externalSystemId: ID
"""Can the contact be invited or not"""
invite: Boolean
invoiceAddress: String
invoiceApartment: String
invoiceCity: String
invoiceCompany: String
invoiceCountry: String
invoiceFirstname: String
invoiceLastname: String
invoicePostalcode: String
"""
Access to all suppliers - can sell all products. Relevant for contact type sales rep.
"""
isSuperman: Int
"""
Access to all contacts - can sell to all customers. Relevant for contact type sales rep.
"""
isSuperwoman: Int
lastInvite: String
migrateOldId: String
name: String
notes: String
paymentBankCustom: String
paymentEmail: String
paymentIbanCustom: String
paymentMethod: String
paymentTaxCode: String
paymentVatCustom: String
phone: String
shippingAddress: String
shippingApartment: String
shippingCity: String
shippingCompany: String
shippingCountry: String
shippingFirstname: String
shippingLastname: String
shippingPostalcode: String
status: Int
termOfPayment: String
"""0 = Customer, 1 = Supplier, 2 = Sales Rep, 3 = Team Member"""
type: Int
urlkey: String
}
"""Ordering options for contact lists"""
enum ContactModelOrder {
"""Ascending by created_at"""
CREATED_AT_ASC
"""Descending by created_at"""
CREATED_AT_DESC
"""Ascending by id"""
ID_ASC
"""Descending by id"""
ID_DESC
"""Ascending by updated_at"""
UPDATED_AT_ASC
"""Descending by updated_at"""
UPDATED_AT_DESC
}
type ContactPage {
contactUserId: ID
currency: String
customId: String
defaultSupplier: Int
discount: Float
email: String
externalSystemId: ID
group: Int
id: ID
img: [String]
"""Can the contact be invited or not"""
invite: Boolean
invoiceAddress: String
invoiceApartment: String
invoiceCity: String
invoiceCompany: String
invoiceCountry: String
invoiceFirstname: String
invoiceLastname: String
invoicePostalcode: String
"""
Access to all suppliers - can sell all products. Relevant for contact type sales rep.
"""
isSuperman: Int
"""
Access to all contacts - can sell to all customers. Relevant for contact type sales rep.
"""
isSuperwoman: Int
lastInvite: String
members: [String]
migrateOldId: String
name: String
notes: String
ownerId: ID
paymentBankCustom: String
paymentEmail: String
paymentIbanCustom: String
paymentMethod: String
paymentTaxCode: String
paymentVatCustom: String
phone: String
shippingAddress: String
shippingApartment: String
shippingCity: String
shippingCompany: String
shippingCountry: String
shippingFirstname: String
shippingLastname: String
shippingPostalcode: String
status: Int
termOfPayment: String
"""0 = Customer, 1 = Supplier, 2 = Sales Rep, 3 = Team Member"""
type: Int
urlkey: String
}
type ContactsMeta {
"""Count of elements with signed up user accounts attached"""
accessCount: Int
"""Count of elemtens in the list"""
count: Int
}
"""Country"""
type Country {
"""
a two-character country code following ISO 3166 https://www.iso.org/iso-3166-country-codes.html
"""
code: String
name: String
}
input CountryInput {
"""
a two-character country code following ISO 3166 https://www.iso.org/iso-3166-country-codes.html
"""
code: String
}
input CreateDiscountInput {
applications: Int
fixedAmountValue: Float
name: String
ownerId: ID
percentageValue: Float
quantityOrAmount: Int
status: Int
type: Int
xgetyItems: String
xgetyMinimumAmount: Float
xgetyMinimumQtyItems: Float
xgetyPercentage: Float
}
input CreatePricelistAccessInput {
accessType: Int
contactId: ID!
pricelistId: ID!
}
input CreatePricelistInput {
access: [PricelistAccessInput]
"""3 character currency code. eg. USD, EUR, NOK ..."""
currency: String
dropId: ID
name: String
ownerId: ID
"""
Indicates whether pricelist is enabled or disabled 0 enabled, 1 disabled
"""
status: Int
"""
Indicates whether pricelist applies to customer currency (0) selected customers (1)
"""
type: Int
values: [UpdatePricelistValueInput]
}
input CreatePricelistValueInput {
price: Float!
pricelistId: ID!
productId: ID!
rrp: String
}
"""credential"""
type Credential {
accountType: Int
email: String
nlAccept: Int
recovery: String
recoveryInform: Int
representing(
"""Number of elemts to retrieve, defaults to 10"""
first: Int = 10
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
): [User]
status: Int
userId: ID
welcome: Int
}
"""The `Date` scalar type represents a date"""
scalar Date
"""
The `DateTime` scalar type represents a date and time in the UTC
timezone. The DateTime appears in a JSON response as an ISO8601 formatted
string, including UTC timezone ("Z"). The parsed date and time string will
be converted to UTC and any UTC offset other than 0 will be rejected.
"""
scalar DateTime
input DatetimeFilter {
eq: DateTime
exists: Boolean
gt: DateTime
lt: DateTime
}
"""discount"""
type Discount {
applications: Int
fixedAmountValue: Float
id: ID
name: String
ownerId: ID
percentageValue: Float
quantityOrAmount: Int
status: Int
type: Int
urlkey: String
xgetyItems: String
xgetyMinimumAmount: Float
xgetyMinimumQtyItems: Float
xgetyPercentage: Float
}
input DiscountFilter {
id: IdFilter
"""Filter discounts by name"""
query: String
}
input DiscountInput {
applications: Int
fixedAmountValue: Float
name: String
ownerId: ID
percentageValue: Float
quantityOrAmount: Int
status: Int
type: Int
urlkey: String
xgetyItems: String
xgetyMinimumAmount: Float
xgetyMinimumQtyItems: Float
xgetyPercentage: Float
}
"""Ordering options for discount lists"""
enum DiscountModelOrder {
"""Ascending by created_at"""
CREATED_AT_ASC
"""Descending by created_at"""
CREATED_AT_DESC
"""Ascending by ID"""
ID_ASC
"""Descending by ID"""
ID_DESC
"""Ascending by name"""
NAME_ASC
"""Descending by name"""
NAME_DESC
"""Ascending by updated_at"""
UPDATED_AT_ASC
"""Descending by updated_at"""
UPDATED_AT_DESC
}
"""Meta data for a list of discounts"""
type DiscountsMeta {
"""Numer of discounts"""
count: Int
}
"""A drop"""
type Drop {
"""Drop products metadata"""
_dropProductsMeta(
"""Filters to be applied on the returned objects"""
filter: ProductModelFilter = {}
): ProductsMeta
"""Drop product metadata"""
_products: ProductsMeta @deprecated(reason: "Use _dropProductsMeta instead")
access: Int @deprecated(reason: "Field has never been used")
archive: Boolean
asset: String @deprecated(reason: "Use assets")
assets: [String]
"""Timestamp of when the asset archive file was generated"""
assetsArchiveGeneratedAt: DateTime
"""Archive containing all Drop assets"""
assetsArchiveUrl: String
createdAt: DateTime
csvSource: String
currencyBuy: String
currencySell: String
"""Drop order collection deadline"""
deadline: String
"""
Identifies whether the deadline is strict or not - orders acceped after deadline or not. 0: False, 1: True
"""
deadlineStop: Int
"""Expected product delivery end date. Only visible in exports."""
deliveryEnd: Date
"""Expected product delivery start date. Only visible in exports."""
deliveryStart: Date
"""Informative text about the delivery window to displayed on the drop"""
deliveryWindow: String
"""List of discount object added to the drop"""
discounts(
"""Number of elements to retrieve, defaults to 100"""
first: Int = 100
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
): [Discount]
"""List of products added to the drop and their order"""
dropProducts(
"""Filters to be applied on the returned objects"""
filter: ProductModelFilter = {}
"""Number of elements to retrieve, defaults to 100"""
first: Int = 100
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
"""Specifies the order for the returned objects"""
orderBy: [DropProductModelOrder] = [ROW_ORDER_ASC, ID_DESC]
): [DropProduct]
filter: Int
id: ID
images: [String]
img: String @deprecated(reason: "Use images")
"""General description of the drop"""
info: String
"""Is publicly accesible - without login and access grants"""
isPublic: Boolean
lastPromotion: String
name: String
note: String
openrate: Int
"""Custom order of the drop in a list view"""
order: Int
orderItemsQty: Float
orderQty: Int
orderTotal: Float
orderTotalArray: [OrderTotal]
"""Owner of the drop"""
owner: User
ownerId: String
"""Timestamp of when the pdf catalog was generated"""
pdfGeneratedAt: DateTime
"""Drop download as PDF catalog"""
pdfUrl: String
"""List of products added to the drop"""
products(
"""
1 => custom_field_1
2 => custom_field_2
3 => custom_field_3
4 => custom_field_4
5 => custom_field_5
6 => custom_field_6
7 => custom_field_7
8 => custom_field_8
9 => supplier_name
"""
filterBy: Int
"""
after choosing the filter type (filter_by) this is the corresponding value of the filter_by
"""
filterValue: String
"""Number of elements to retrieve, defaults to 100"""
first: Int = 100
"""Number of first elements to be left out, defaults to 0"""
offset: Int = 0
"""query string"""
query: String
"""value of the type field. like T-Shirt"""
typeValue: String
): [Product] @deprecated(reason: "Use dropProducts instead")
public: Boolean @deprecated(reason: "Please use isPublic instead")
publicVisitorCount: Int
"""
Dynamic part of a custom identifier for the drop taken from owner settings.
"""
rangeDropInt: String
"""
Static part of a custom identifier for the drop taken from owner settings.
"""
rangeDropText: String
season: String
"""0: Not active, 1: Active, 2: Archived"""
status: Int
"""Product supplier for drop"""
supplier: Contact
supplierName: String @deprecated(reason: "Use name on Supplier")
updatedAt: DateTime
urlkey: String
}
"""Connection between drop and discount"""
type DropDiscount {
"""Drop to witch the discount is attached to"""
discount: Discount
"""Drop to witch the discount is attached to"""
drop: Drop
"""Uniq ID of the connection between Drop and Discount"""
id: ID
}
"""Type for accepting drop filter values"""
input DropFilter {
ownerId: IdFilter
ownerUrlkey: UrlkeyFilter
"""Full text search in name field of the drops"""
query: String
status: DropStatusFilter
}
input DropInput {
access: Int
archive: Boolean
assets: [String]
csvSource: String
currencyBuy: String
currencySell: String
"""Drop order collection deadline"""
deadline: String
"""
Identifies whether the deadline is strict or not - orders acceped after deadline or not. 0: False, 1: True
"""
deadlineStop: Int
"""Expected product delivery end date. Only visible in exports."""
deliveryEnd: Date
"""Expected product delivery start date. Only visible in exports."""
deliveryStart: Date
"""Informative text about the delivery window to displayed on the drop"""
deliveryWindow: String
filter: Int
images: [String]
"""General description of the drop"""
info: String
"""Is publicly accesible - without login and access grants"""
isPublic: Boolean
lastPromotion: String
name: String
note: String
openrate: Int
"""Custom order of the drop in a list view"""
order: Int
orderItemsQty: Float
orderQty: Int
orderTotal: Float
publicVisitorCount: Int
"""
Dynamic part of a custom identifier for the drop taken from owner settings.
"""
rangeDropInt: String
"""
Static part of a custom identifier for the drop taken from owner settings.
"""
rangeDropText: String
season: String
"""0: Not active, 1: Active, 2: Archived"""
status: Int
supplierId: ID
supplierName: String
}
type DropMeta {
filterNames: [String]
types: [String]
}
"""Ordering options for drop lists"""
enum DropModelOrder {
"""Ascending by created_at"""
CREATED_AT_ASC
"""Descending by created_at"""
CREATED_AT_DESC
"""Ascending by ID"""
ID_ASC
"""Descending by ID"""
ID_DESC
"""Ascending by the custom order field"""
ORDER_ASC
"""Descending by the custom order field"""
ORDER_DESC
"""Ascending by updated_at"""
UPDATED_AT_ASC
"""Descending by updated_at"""
UPDATED_AT_DESC
}
type DropProduct {
dropId: ID
"""
A products association with a drop
and it's order between other products
"""
id: ID
product: Product
productId: ID
"""Integer representing the product order in a list"""
rowOrder: Int
}
"""Ordering options for drop product lists"""
enum DropProductModelOrder {
"""Ascending by ID"""
ID_ASC
"""Descending by ID"""
ID_DESC
"""Ascending by the custom order field"""
ROW_ORDER_ASC
"""Descending by the custom order field"""
ROW_ORDER_DESC
}
"""Meta data for a listDrops query"""
type DropsMeta {
"""Number of entries returned in a listDrops query"""
count: Int
}
"""Drop status field values and their meaning"""
enum DropStatus {
"""Not Active"""
INACTIVE
"""Active"""
ACTIVE
"""Archived"""
ARCHIVED
}
"""Object for collecting filter arguments for field drop status"""
input DropStatusFilter {
eq: DropStatus
neq: DropStatus
}
type ExternalContact {
contactId: ID
externalSystemId: ID
externalSystemName: String
extra: String
}
input ExternalContactInput {
contactId: ID
externalSystemId: ID
externalSystemName: String
extra: String
}
type ExternalOrder {
externalSystemId: ID
externalSystemName: String
extra: String
orderId: ID
}
input ExternalOrderInput {
externalSystemId: ID
externalSystemName: String
extra: String
orderId: ID
}
type ExternalProduct {
externalSystemId: ID
externalSystemName: String
extra: String
productId: ID
}
input ExternalProductInput {
externalSystemId: ID
externalSystemName: String
extra: String
productId: ID
}
"""Object for collecting filter arguments for field of type ID"""
input IdFilter {
eq: ID
neq: ID
}
input IntegerFilter {
eq: Int
neq: Int
}
"""integration"""
type Integration {
id: ID
ownerId: ID
shopifyAdminApiAccessToken: String
shopifyApiSecretKey: String
shopifyUrl: String
}
"""integration_data"""
type IntegrationData {
fieldName: String
value: String
}
input IntegrationDataInput {
fieldName: String
value: String
}
input IntegrationInput {
shopifyAdminApiAccessToken: String
shopifyApiSecretKey: String
shopifyUrl: String
}
"""Meta data for a list connect requests query"""
type ListConnectRequestsMeta {
count: Int
}
"""Metadata of a list notification query"""
type ListNotificationsMeta {
count: Int
}
input LoginOptions {
countryCode: String
}
"""A notification"""
type Notification {
createdAt: DateTime
id: ID
object: NotificationObject
payload: String
seenAt: DateTime
type: String
updatedAt: DateTime
}
input NotificationFilter {
seenAt: DatetimeFilter
}