INPUT_OBJECT

EmailHistoryFilter

link GraphQL Schema definition

1input EmailHistoryFilter {
2
3id: [Int!]
4
5createdAt: DateRange
6
7# Exactly one input field should be provided
8recipient: StringMatch
9
10status: [EmailHistoryEntryStatus!]
11
12adminUserId: [Int!]
13
14orderId: [String!]
15
16customerId: [Int!]
17
18buyerId: [Int!]
19
20search: String
21
22notNull: [String!]
23
24negate: [String!]
25
26purchaserId: [Int!]
27}