apollo-federation 2.13.1

Apollo Federation
Documentation
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
use serde_json_bytes::Value as JSON;
use shape::Shape;
use shape::ShapeCase;

use crate::connectors::ConnectSpec;
use crate::connectors::json_selection::ApplyToError;
use crate::connectors::json_selection::ApplyToInternal;
use crate::connectors::json_selection::MethodArgs;
use crate::connectors::json_selection::ShapeContext;
use crate::connectors::json_selection::VarsWithPathsMap;
use crate::connectors::json_selection::immutable::InputPath;
use crate::connectors::json_selection::location::Ranged;
use crate::connectors::json_selection::location::WithRange;
use crate::impl_arrow_method;

impl_arrow_method!(FindMethod, find_method, find_shape);
/// "Find" is an array method that returns the first item that matches the criteria.
/// You can use it to find the first value in an array based on a boolean condition.
/// If no matching item is found, it returns None.
///
/// For example, given a selection of [1, 2, 3, 4, 5]:
///
/// $->find(@->eq(3))      result is 3
/// $->find(@->gt(3))      result is 4
/// $->find(@->eq(10))     result is None (no match)
///
/// We are taking each value passed into find via @ and running the condition function against that value.
/// The first value where the condition returns true will be returned.
///
/// Example with objects:
/// users->find(@.active->eq(true))    returns the first user where active is true
fn find_method(
    method_name: &WithRange<String>,
    method_args: Option<&MethodArgs>,
    data: &JSON,
    vars: &VarsWithPathsMap,
    input_path: &InputPath<JSON>,
    spec: ConnectSpec,
) -> (Option<JSON>, Vec<ApplyToError>) {
    let Some(first_arg) = method_args.and_then(|args| args.args.first()) else {
        return (
            None,
            vec![ApplyToError::new(
                format!("Method ->{} requires one argument", method_name.as_ref()),
                input_path.to_vec(),
                method_name.range(),
                spec,
            )],
        );
    };

    if let JSON::Array(array) = data {
        let mut errors = Vec::new();

        for (i, element) in array.iter().enumerate() {
            let input_path = input_path.append(JSON::Number(i.into()));
            let (applied_opt, arg_errors) =
                first_arg.apply_to_path(element, vars, &input_path, spec);
            errors.extend(arg_errors);

            match applied_opt {
                Some(JSON::Bool(true)) => {
                    // Found the first matching element, return it
                    return (Some(element.clone()), errors);
                }
                Some(JSON::Bool(false)) => {
                    // Condition is false or errored, continue searching
                }
                Some(_) | None => {
                    // Condition returned a non-boolean value, this is an error
                    errors.push(ApplyToError::new(
                        format!(
                            "->{} condition must return a boolean value",
                            method_name.as_ref()
                        ),
                        input_path.to_vec(),
                        method_name.range(),
                        spec,
                    ));
                    return (None, errors);
                }
            }
        }

        // No matching element found
        (None, errors)
    } else {
        // For non-array inputs, treat as single-element array
        // Apply find condition and return either the value or None
        let (condition_result, mut condition_errors) =
            first_arg.apply_to_path(data, vars, input_path, spec);

        match condition_result {
            Some(JSON::Bool(true)) => (Some(data.clone()), condition_errors),
            Some(JSON::Bool(false)) => (None, condition_errors),
            Some(_) => {
                // Condition returned a non-boolean value, this is an error
                condition_errors.push(ApplyToError::new(
                    format!(
                        "->{} condition must return a boolean value",
                        method_name.as_ref()
                    ),
                    input_path.to_vec(),
                    method_name.range(),
                    spec,
                ));
                (None, condition_errors)
            }
            None => {
                // Condition errored, errors are already in condition_errors
                (None, condition_errors)
            }
        }
    }
}

#[allow(dead_code)] // method type-checking disabled until we add name resolution
fn find_shape(
    context: &ShapeContext,
    method_name: &WithRange<String>,
    method_args: Option<&MethodArgs>,
    input_shape: Shape,
    dollar_shape: Shape,
) -> Shape {
    let arg_count = method_args.map(|args| args.args.len()).unwrap_or_default();
    if arg_count > 1 {
        return Shape::error(
            format!(
                "Method ->{} requires only one argument, but {arg_count} were provided",
                method_name.as_ref(),
            ),
            vec![],
        );
    }

    let Some(first_arg) = method_args.and_then(|args| args.args.first()) else {
        return Shape::error(
            format!("Method ->{} requires one argument", method_name.as_ref()),
            method_name.shape_location(context.source_id()),
        );
    };

    // Compute the shape of the find condition argument
    let condition_shape =
        first_arg.compute_output_shape(context, input_shape.clone(), dollar_shape);

    // Validate that the condition evaluates to a boolean or
    // something that could become a boolean
    if !(matches!(condition_shape.case(), ShapeCase::Bool(_)) ||
        // This allows Unknown and Name shapes, which can produce boolean
        // values at runtime, without any runtime errors.
        condition_shape.accepts(&Shape::unknown([])))
    {
        return Shape::error(
            format!(
                "->{} condition must return a boolean value",
                method_name.as_ref()
            ),
            method_name.shape_location(context.source_id()),
        );
    }

    // Find returns a single item (or None), so we return the item type of the input shape
    Shape::one([Shape::none(), input_shape.any_item([])], [])
}

#[cfg(test)]
mod method_tests {
    use serde_json_bytes::json;

    use crate::connectors::ConnectSpec;
    use crate::connectors::json_selection::ApplyToError;
    use crate::selection;

    #[test]
    fn find_should_return_first_matching_element() {
        assert_eq!(
            selection!("$->echo([1,2,3,4,5])->find(@->eq(3))").apply_to(&json!(null)),
            (Some(json!(3)), vec![]),
        );
    }

    #[test]
    fn find_should_return_first_match_when_multiple_exist() {
        assert_eq!(
            selection!("$->echo([1,2,3,2,1])->find(@->eq(2))").apply_to(&json!(null)),
            (Some(json!(2)), vec![]),
        );
    }

    #[test]
    fn find_should_return_none_when_no_matches() {
        assert_eq!(
            selection!("$->echo([1,2,3])->find(@->eq(5))").apply_to(&json!(null)),
            (None, vec![]),
        );
    }

    #[test]
    fn find_should_work_with_object_properties() {
        assert_eq!(
            selection!("users->find(@.active->eq(true))").apply_to(&json!({
                "users": [
                    { "name": "Alice", "active": false },
                    { "name": "Bob", "active": true },
                    { "name": "Charlie", "active": true },
                ],
            })),
            (Some(json!({ "name": "Bob", "active": true })), vec![]),
        );
    }

    #[test]
    fn find_should_handle_non_array_input_true_condition() {
        assert_eq!(
            selection!("value->find(@->eq(123))").apply_to(&json!({
                "value": 123,
            })),
            (Some(json!(123)), vec![]),
        );
    }

    #[test]
    fn find_should_handle_non_array_input_false_condition() {
        assert_eq!(
            selection!("value->find(@->eq(456))").apply_to(&json!({
                "value": 123,
            })),
            (None, vec![]),
        );
    }

    #[test]
    fn find_should_handle_complex_conditions() {
        // Find the first number greater than 3
        assert_eq!(
            selection!("numbers->find(@->gt(3))").apply_to(&json!({
                "numbers": [1, 2, 3, 4, 5, 6],
            })),
            (Some(json!(4)), vec![]),
        );
    }

    #[test]
    fn find_should_error_with_non_boolean_results() {
        // Elements where the condition doesn't return a boolean should cause an error
        // Using a string condition that evaluates to a non-boolean
        let result = selection!("values->find(@->echo('not_boolean'))").apply_to(&json!({
            "values": [1, 2, 3],
        }));

        // Should return None and have errors
        assert_eq!(result.0, None);
        assert!(!result.1.is_empty());
        assert!(
            result.1[0]
                .message()
                .contains("->find condition must return a boolean value")
        );
    }

    #[test]
    fn find_should_chain_with_other_methods() {
        // Find the first number equal to 3, then add 10 to it
        assert_eq!(
            selection!("$->echo([1,2,3,4,5])->find(@->eq(3))->add(10)").apply_to(&json!(null)),
            (Some(json!(13)), vec![]),
        );
    }

    #[test]
    fn find_should_work_with_string_values() {
        assert_eq!(
            selection!("words->find(@->eq('hello'))").apply_to(&json!({
                "words": ["world", "hello", "test", "hello"],
            })),
            (Some(json!("hello")), vec![]),
        );
    }

    #[test]
    fn find_should_handle_mixed_types() {
        assert_eq!(
            selection!("values->find(@->typeof->eq('string'))").apply_to(&json!({
                "values": [1, "hello", 2.5, true, null, 42],
            })),
            (Some(json!("hello")), vec![]),
        );
    }

    #[test]
    fn find_should_return_none_for_empty_array() {
        assert_eq!(
            selection!("$->echo([])->find(@->eq(1))").apply_to(&json!(null)),
            (None, vec![]),
        );
    }

    #[rstest::rstest]
    #[case::v0_2(ConnectSpec::V0_2)]
    #[case::v0_3(ConnectSpec::V0_3)]
    #[case::v0_4(ConnectSpec::V0_4)]
    fn find_should_return_none_when_argument_evaluates_to_none(#[case] spec: ConnectSpec) {
        assert_eq!(
            selection!("$.a->find($.missing)", spec).apply_to(&json!({
                "a": [1, 2, 3],
            })),
            (
                None,
                vec![
                    ApplyToError::from_json(&json!({
                        "message": "Property .missing not found in object",
                        "path": ["missing"],
                        "range": [12, 19],
                        "spec": spec.to_string(),
                    })),
                    ApplyToError::from_json(&json!({
                        "message": "->find condition must return a boolean value",
                        "path": ["a", "->find", 0],
                        "range": [5, 9],
                        "spec": spec.to_string(),
                    }))
                ]
            ),
        );
    }
}

#[cfg(test)]
mod shape_tests {
    use shape::location::Location;
    use shape::location::SourceId;

    use super::*;
    use crate::connectors::Key;
    use crate::connectors::PathSelection;
    use crate::connectors::json_selection::PathList;
    use crate::connectors::json_selection::lit_expr::LitExpr;

    fn get_location() -> Location {
        Location {
            source_id: SourceId::new("test".to_string()),
            span: 0..4,
        }
    }

    fn get_shape(args: Vec<WithRange<LitExpr>>, input: Shape) -> Shape {
        let location = get_location();
        find_shape(
            &ShapeContext::new(location.source_id),
            &WithRange::new("find".to_string(), Some(location.span)),
            Some(&MethodArgs { args, range: None }),
            input,
            Shape::unknown([]),
        )
    }

    #[test]
    fn find_shape_should_return_item_type_on_valid_boolean_condition() {
        let input_shape = Shape::list(Shape::int([]), []);
        assert_eq!(
            get_shape(
                vec![WithRange::new(LitExpr::Bool(true), None)],
                input_shape.clone()
            ),
            Shape::one([Shape::none(), input_shape.any_item([])], [])
        );
    }

    #[test]
    fn find_shape_should_return_item_type_for_array_input() {
        let item_shape = Shape::string([]);
        let input_shape = Shape::list(item_shape, []);
        assert_eq!(
            get_shape(
                vec![WithRange::new(LitExpr::Bool(true), None)],
                input_shape.clone()
            ),
            Shape::one([Shape::none(), input_shape.any_item([])], [])
        );
    }

    #[test]
    fn find_shape_should_return_item_type_for_single_item_input() {
        let input_shape = Shape::string([]);
        assert_eq!(
            get_shape(
                vec![WithRange::new(LitExpr::Bool(true), None)],
                input_shape.clone()
            ),
            Shape::one([Shape::none(), input_shape.any_item([])], [])
        );
    }

    #[test]
    fn find_shape_should_error_on_non_boolean_condition() {
        assert_eq!(
            get_shape(
                vec![WithRange::new(
                    LitExpr::String("not_bool".to_string()),
                    None
                )],
                Shape::string([])
            ),
            Shape::error(
                "->find condition must return a boolean value".to_string(),
                [get_location()]
            )
        );
    }

    #[test]
    fn find_shape_should_error_on_no_args() {
        assert_eq!(
            get_shape(vec![], Shape::string([])),
            Shape::error(
                "Method ->find requires one argument".to_string(),
                [get_location()]
            )
        );
    }

    #[test]
    fn find_shape_should_error_on_too_many_args() {
        assert_eq!(
            get_shape(
                vec![
                    WithRange::new(LitExpr::Bool(true), None),
                    WithRange::new(LitExpr::Bool(false), None)
                ],
                Shape::string([])
            ),
            Shape::error(
                "Method ->find requires only one argument, but 2 were provided".to_string(),
                []
            )
        );
    }

    #[test]
    fn find_shape_should_error_on_none_args() {
        let location = get_location();
        assert_eq!(
            find_shape(
                &ShapeContext::new(location.source_id),
                &WithRange::new("find".to_string(), Some(location.span)),
                None,
                Shape::string([]),
                Shape::none(),
            ),
            Shape::error(
                "Method ->find requires one argument".to_string(),
                [get_location()]
            )
        );
    }

    #[test]
    fn find_shape_should_handle_unknown_condition_shape() {
        let path = LitExpr::Path(PathSelection {
            path: PathList::Key(
                Key::field("a").into_with_range(),
                PathList::Empty.into_with_range(),
            )
            .into_with_range(),
        });
        let input_shape = Shape::list(Shape::int([]), []);
        // Unknown shapes should be accepted as they could produce boolean values at runtime
        let result = get_shape(vec![path.into_with_range()], input_shape.clone());
        assert_eq!(
            result,
            Shape::one([Shape::none(), input_shape.any_item([])], [])
        );
    }
}