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
use crate::types::connection::QueryOperation;
use crate::{Connection, Context, Cursor, DataSource, FieldResult, ObjectType};
use futures::{stream::BoxStream, StreamExt};
use std::collections::VecDeque;
#[async_trait::async_trait]
impl<'a, T, E> DataSource for BoxStream<'a, (Cursor, E, T)>
where
T: Send + 'a,
E: ObjectType + Send + 'a,
{
type Element = T;
type EdgeFieldsObj = E;
async fn query_operation(
&mut self,
_ctx: &Context<'_>,
operation: &QueryOperation,
) -> FieldResult<Connection<Self::Element, Self::EdgeFieldsObj>> {
let mut count: usize = 0;
let mut has_seen_before = false;
let mut has_prev_page = false;
let mut has_next_page = false;
let mut edges = VecDeque::new();
while let Some(edge) = self.next().await {
count += 1;
if has_seen_before {
continue;
}
match operation {
QueryOperation::After { after }
| QueryOperation::Between { after, .. }
| QueryOperation::FirstAfter { after, .. }
| QueryOperation::FirstBetween { after, .. }
| QueryOperation::LastAfter { after, .. }
| QueryOperation::LastBetween { after, .. } => {
if *after == edge.0 {
has_prev_page = true;
has_next_page = false;
edges.clear();
continue;
}
}
_ => {}
}
match operation {
QueryOperation::Before { before }
| QueryOperation::Between { before, .. }
| QueryOperation::FirstBefore { before, .. }
| QueryOperation::FirstBetween { before, .. }
| QueryOperation::LastBefore { before, .. }
| QueryOperation::LastBetween { before, .. } => {
if *before == edge.0 {
has_seen_before = true;
has_next_page = true;
continue;
}
}
_ => {}
}
match operation {
QueryOperation::First { limit }
| QueryOperation::FirstAfter { limit, .. }
| QueryOperation::FirstBefore { limit, .. }
| QueryOperation::FirstBetween { limit, .. } => {
if edges.len() < *limit {
edges.push_back(edge)
} else {
has_next_page = true;
}
}
QueryOperation::Last { limit }
| QueryOperation::LastAfter { limit, .. }
| QueryOperation::LastBefore { limit, .. }
| QueryOperation::LastBetween { limit, .. } => {
if edges.len() >= *limit {
has_prev_page = true;
edges.pop_front();
}
edges.push_back(edge);
}
_ => {
edges.push_back(edge);
}
}
}
Ok(Connection::new(
Some(count),
has_prev_page,
has_next_page,
edges.into(),
))
}
}