Class: ElasticGraph::SchemaDefinition::SchemaElements::BuiltInTypes

Inherits:
Object
  • Object
show all
Defined in:
lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb

Overview

Defines all built-in GraphQL types provided by ElasticGraph.

## Scalar Types

### Standard GraphQL Scalars

These are defined by the [GraphQL spec](spec.graphql.org/October2021/#sec-Scalars.Built-in-Scalars).

Boolean : Represents ‘true` or `false` values.

Float : Represents signed double-precision fractional values as specified by

[IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).

ID : Represents a unique identifier that is Base64 obfuscated. It is often used to

refetch an object or as key for a cache. The ID type appears in a JSON response as a
String; however, it is not intended to be human-readable. When expected as an input
type, any string (such as `"VXNlci0xMA=="`) or integer (such as `4`) input value will
be accepted as an ID.

Int : Represents non-fractional signed whole numeric values. Int can represent values between

-(2^31) and 2^31 - 1.

String : Represents textual data as UTF-8 character sequences. This type is most often used by

GraphQL to represent free-form human-readable text.

### Additional ElasticGraph Scalars

ElasticGraph defines these additional scalar types.

Cursor : An opaque string value representing a specific location in a paginated connection type.

Returned cursors can be passed back in the next query via the `before` or `after`
arguments to continue paginating from that point.

Date : A date, represented as an [ISO 8601 date string](en.wikipedia.org/wiki/ISO_8601).

DateTime : A timestamp, represented as an [ISO 8601 time string](en.wikipedia.org/wiki/ISO_8601).

JsonSafeLong : A numeric type for large integer values that can serialize safely as JSON. While JSON

itself has no hard limit on the size of integers, the RFC-7159 spec mentions that
values outside of the range -9,007,199,254,740,991 (-(2^53) + 1) to 9,007,199,254,740,991
(2^53 - 1) may not be interopable with all JSON implementations. As it turns out, the
number implementation used by JavaScript has this issue. When you parse a JSON string that
contains a numeric value like `4693522397653681111`, the parsed result will contain a
rounded value like `4693522397653681000`. While this is entirely a client-side problem,
we want to preserve maximum compatibility with common client languages. Given the ubiquity
of GraphiQL as a GraphQL client, we want to avoid this problem. Our solution is to support
two separate types:

- This type (`JsonSafeLong`) is serialized as a number, but limits values to the safely
  serializable range.
- The `LongString` type supports long values that use all 64 bits, but serializes as a
  string rather than a number, avoiding the JavaScript compatibility problems. For more
  background, see the [JavaScript `Number.MAX_SAFE_INTEGER`
  docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).

LocalTime : A local time such as ‘“23:59:33”` or `“07:20:47.454”` without a time zone or offset,

formatted based on the [partial-time portion of
RFC3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6).

LongString : A numeric type for large integer values in the inclusive range -2^63 (-9,223,372,036,854,775,808)

to (2^63 - 1) (9,223,372,036,854,775,807). Note that `LongString` values are serialized as strings
within JSON, to avoid interopability problems with JavaScript. If you want a large integer type
that serializes within JSON as a number, use `JsonSafeLong`.

TimeZone : An [IANA time zone identifier](www.iana.org/time-zones), such as ‘America/Los_Angeles`

or `UTC`. For a full list of valid identifiers, see the
[wikipedia article](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).

Untyped : A custom scalar type that allows any type of data, including:

- strings
- numbers
- objects and arrays (nested as deeply as you like)
- booleans

Note: fields of this type are effectively untyped. We recommend it only be used for parts
of your schema that can't be statically typed.

## Enum Types

ElasticGraph defines these enum types. Most of these are intended for usage as an input argument, but they could be used as a return type in your schema if they meet your needs.

DateGroupingGranularity : Enumerates the supported granularities of a ‘Date`.

DateGroupingTruncationUnit : Enumerates the supported truncation units of a ‘Date`.

DateTimeGroupingGranularity : Enumerates the supported granularities of a ‘DateTime`.

DateTimeGroupingTruncationUnit : Enumerates the supported truncation units of a ‘DateTime`.

DateTimeUnit : Enumeration of ‘DateTime` units.

DateUnit : Enumeration of ‘Date` units.

DayOfWeek : Indicates the specific day of the week.

DistanceUnit : Enumerates the supported distance units.

LocalTimeGroupingTruncationUnit : Enumerates the supported truncation units of a ‘LocalTime`.

LocalTimeUnit : Enumeration of ‘LocalTime` units.

MatchesQueryAllowedEditsPerTerm : Enumeration of allowed values for the ‘matchesQuery: …` filter option.

## Object Types

ElasticGraph defines these object types.

AggregationCountDetail : Provides detail about an aggregation ‘count`.

GeoLocation : Geographic coordinates representing a location on the Earth’s surface.

PageInfo : Provides information about the specific fetched page. This implements the

`PageInfo` specification from the [Relay GraphQL Cursor Connections
Specification](https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(schema_def_api, schema_def_state) ⇒ BuiltInTypes

Returns a new instance of BuiltInTypes.



170
171
172
173
174
# File 'lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb', line 170

def initialize(schema_def_api, schema_def_state)
  @schema_def_api = schema_def_api
  @schema_def_state = schema_def_state
  @names = schema_def_state.schema_elements
end

Instance Attribute Details

#namesObject



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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# File 'lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb', line 166

class BuiltInTypes
  attr_reader :schema_def_api, :schema_def_state, :names

  # @private
  def initialize(schema_def_api, schema_def_state)
    @schema_def_api = schema_def_api
    @schema_def_state = schema_def_state
    @names = schema_def_state.schema_elements
  end

  # @private
  def register_built_in_types
    register_directives
    register_standard_graphql_scalars
    register_custom_elastic_graph_scalars
    register_enum_types
    register_date_and_time_grouped_by_types
    register_standard_elastic_graph_types
  end

  private

  def register_directives
    # Note: The `eg` prefix is being used based on a GraphQL Spec recommendation:
    # http://spec.graphql.org/October2021/#sec-Type-System.Directives.Custom-Directives
    schema_def_api.raw_sdl <<~EOS
      """
      Indicates an upper bound on how quickly a query must respond to meet the service-level objective.
      ElasticGraph will log a "good event" message if the query latency is less than or equal to this value,
      and a "bad event" message if the query latency is greater than this value. These messages can be used
      to drive an SLO dashboard.

      Note that the latency compared against this only contains processing time within ElasticGraph itself.
      Any time spent on sending the request or response over the network is not included in the comparison.
      """
      directive @#{names.eg_latency_slo}(#{names.ms}: Int!) on QUERY
    EOS
  end

  def register_standard_elastic_graph_types
    # This is a special filter on a `String` type, so we don't have a `Text` scalar to generate it from.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("String", name_prefix: "Text") do |t|
      # We can't support filtering on `null` within a list, so make the field non-nullable when it's the
      # `ListElementFilterInput` type. See scalar_type.rb for a larger comment explaining the rationale behind this.
      equal_to_any_of_type = t.type_ref.list_element_filter_input? ? "[String!]" : "[String]"
      t.field names.equal_to_any_of, equal_to_any_of_type do |f|
        f.documentation ScalarType::EQUAL_TO_ANY_OF_DOC
      end

      t.field names.matches, "String" do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided value using full text search.

          Will be ignored when `null` is passed.
        EOS

        f.directive "deprecated", reason: "Use `#{names.matches_query}` instead."
      end

      t.field names.matches_query, schema_def_state.type_ref("MatchesQuery").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided query using full text search.
          This is more lenient than `#{names.matches_phrase}`: the order of terms is ignored, and,
          by default, only one search term is required to be in the field value.

          Will be ignored when `null` is passed.
        EOS
      end

      t.field names.matches_phrase, schema_def_state.type_ref("MatchesPhrase").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value has a phrase matching the provided phrase using
          full text search. This is stricter than `#{names.matches_query}`: all terms must match
          and be in the same order as the provided phrase.

          Will be ignored when `null` is passed.
        EOS
      end
    end.each do |input_type|
      field_type = input_type.type_ref.list_filter_input? ? "[String]" : "String"
      input_type.documentation <<~EOS
        Input type used to specify filters on `#{field_type}` fields that have been indexed for full text search.

        Will be ignored if passed as an empty object (or as `null`).
      EOS

      register_input_type(input_type)
    end

    register_filter "MatchesQuery" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_query}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.query, "String!" do |f|
        f.documentation "The input query to search for."
      end

      t.field names.allowed_edits_per_term, "MatchesQueryAllowedEditsPerTerm!" do |f|
        f.documentation <<~EOS
          Number of allowed modifications per term to arrive at a match. For example, if set to 'ONE', the input
          term 'glue' would match 'blue' but not 'clued', since the latter requires two modifications.
        EOS

        f.default "DYNAMIC"
      end

      t.field names.require_all_terms, "Boolean!" do |f|
        f.documentation <<~EOS
          Set to `true` to match only if all terms in `#{names.query}` are found, or
          `false` to only require one term to be found.
        EOS

        f.default false
      end
    end

    register_filter "MatchesPhrase" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_phrase}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.phrase, "String!" do |f|
        f.documentation "The input phrase to search for."
      end
    end

    # This is defined as a built-in ElasticGraph type so that we can leverage Elasticsearch/OpenSearch GeoLocation features
    # based on the geo-point type:
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/geo-point.html
    schema_def_api.object_type "GeoLocation" do |t|
      t.documentation "Geographic coordinates representing a location on the Earth's surface."

      # As per the Elasticsearch docs, the field MUST come in named `lat` in Elastisearch (but we want the full name in GraphQL).
      t.field names.latitude, "Float", name_in_index: "lat" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -90, maximum: 90, nullable: false
      end

      # As per the Elasticsearch docs, the field MUST come in named `lon` in Elastisearch (but we want the full name in GraphQL).
      t.field names.longitude, "Float", name_in_index: "lon" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -180, maximum: 180, nullable: false
      end

      t.mapping type: "geo_point"
    end

    # Note: `GeoLocation` is an index leaf type even though it is a GraphQL object type. In the datastore,
    # it is indexed as an indivisible `geo_point` field.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("GeoLocation") do |t|
      t.field names.near, schema_def_state.type_ref("GeoLocationDistance").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field's geographic location is within a specified distance from the
          location identified by `#{names.latitude}` and `#{names.longitude}`.

          Will be ignored when `null` or an empty object is passed.
        EOS
      end
    end.each { |input_filter| register_input_type(input_filter) }

    register_filter "GeoLocationDistance" do |t|
      t.documentation "Input type used to specify distance filtering parameters on `GeoLocation` fields."

      # Note: all 4 of these fields (latitude, longitude, max_distance, unit) are required for this
      # filter to operator properly, so they are all non-null fields.

      t.field names.latitude, "Float!" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."
      end

      t.field names.longitude, "Float!" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."
      end

      t.field names.max_distance, "Float!" do |f|
        f.documentation <<~EOS
          Maximum distance (of the provided `#{names.unit}`) to consider "near" the location identified
          by `#{names.latitude}` and `#{names.longitude}`.
        EOS
      end

      t.field names.unit, "DistanceUnit!" do |f|
        f.documentation "Determines the unit of the specified `#{names.max_distance}`."
      end

      # any_of/not don't really make sense on this filter because it doesn't make sense to
      # apply an OR operator or negation to the fields of this type since they are all an
      # indivisible part of a single filter operation on a specific field. So we remove them
      # here.
      remove_any_of_and_not_filter_operators_on(t)
    end

    # Note: `has_next_page`/`has_previous_page` are required to be non-null by the relay
    # spec: https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo.
    # The cursors are required to be non-null by the relay spec, but it is nonsensical
    # when dealing with an empty collection, and relay itself implements it to be null:
    #
    # https://github.com/facebook/relay/commit/a17b462b3ff7355df4858a42ddda75f58c161302
    #
    # For more context, see:
    # https://github.com/rmosolgo/graphql-ruby/pull/2886#issuecomment-618414736
    # https://github.com/facebook/relay/pull/2655
    #
    # For now we will make the cursor fields nullable. It would be a breaking change
    # to go from non-null to null, but is not a breaking change to make it non-null
    # in the future.
    register_framework_object_type "PageInfo" do |t|
      t.documentation <<~EOS
        Provides information about the specific fetched page. This implements the `PageInfo`
        specification from the [Relay GraphQL Cursor Connections
        Specification](https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo).
      EOS

      t.field names.has_next_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available after the current one."
      end

      t.field names.has_previous_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available before the current one."
      end

      t.field names.start_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the first edge of the current page. This can be passed in the next query as
          a `before` argument to paginate backwards.
        EOS
      end

      t.field names.end_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the last edge of the current page. This can be passed in the next query as
          a `after` argument to paginate forwards.
        EOS
      end
    end

    schema_def_api.factory.new_input_type("DateTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DateTime` fields, representing the amount of offset
        (positive or negative) to shift the `DateTime` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DateTime` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DateTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DateGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `Date` fields, representing the amount of offset
        (positive or negative) to shift the `Date` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `Date` groupings."
      end

      t.field names.unit, "DateUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `Date` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DayOfWeekGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DayOfWeek` fields, representing the amount of offset
        (positive or negative) to shift the `DayOfWeek` boundaries of each grouping bucket.

        For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
        when they fall between midnight and 2 AM.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DayOfWeek` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DayOfWeek` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("LocalTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `LocalTime` fields, representing the amount of offset
        (positive or negative) to shift the `LocalTime` boundaries of each grouping bucket.

        For example, when grouping by `HOUR`, you can shift by 30 minutes to change
        what minute-of-hour hours are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `LocalTime` groupings."
      end

      t.field names.unit, "LocalTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `LocalTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_aggregated_values_type_for_index_leaf_type "NonNumeric" do |t|
      t.documentation "A return type used from aggregations to provided aggregated values over non-numeric fields."
    end.tap { |t| schema_def_api.state.register_object_interface_or_union_type(t) }

    register_framework_object_type "AggregationCountDetail" do |t|
      t.documentation "Provides detail about an aggregation `#{names.count}`."

      t.field names.approximate_value, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          The (approximate) count of documents in this aggregation bucket.

          When documents in an aggregation bucket are sourced from multiple shards, the count may be only
          approximate. The `#{names.upper_bound}` indicates the maximum value of the true count, but usually
          the true count is much closer to this approximate value (which also provides a lower bound on the
          true count).

          When this approximation is known to be exact, the same value will be available from `#{names.exact_value}`
          and `#{names.upper_bound}`.
        EOS
      end

      t.field names.exact_value, "JsonSafeLong", graphql_only: true do |f|
        f.documentation <<~EOS
          The exact count of documents in this aggregation bucket, if an exact value can be determined.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. When no exact value can be determined, this field will be `null`.
          The `#{names.approximate_value}` field--which will never be `null`--can be used to get an approximation
          for the count.
        EOS
      end

      t.field names.upper_bound, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          An upper bound on how large the true count of documents in this aggregation bucket could be.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. The `#{names.approximate_value}` field provides an approximation,
          and this field puts an upper bound on the true count.
        EOS
      end
    end
  end

  # Registers the standard GraphQL scalar types. Note that the SDL for the scalar type itself isn't
  # included in the dumped SDL, but registering it allows us to derive a filter for each,
  # which we need. In addition, this lets us define the mapping and JSON schema for each standard
  # scalar type.
  def register_standard_graphql_scalars
    schema_def_api.scalar_type "Boolean" do |t|
      t.mapping type: "boolean"
      t.json_schema type: "boolean"
    end

    schema_def_api.scalar_type "Float" do |t|
      t.mapping type: "double"
      t.json_schema type: "number"

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The sum of the field values within this grouping.

            As with all double-precision `Float` values, operations are subject to floating-point loss
            of precision, so the value may be approximate.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "Float") do |adjective:, full_name:|
          <<~EOS
            The value will be "exact" in that the aggregation computation will return
            the exact value of the #{adjective} float that has been indexed, without
            introducing any new imprecision. However, floats by their nature are
            naturally imprecise since they cannot precisely represent all real numbers.
          EOS
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            The computation of this value may introduce additional imprecision (on top of the
            natural imprecision of floats) when it deals with intermediary values that are
            outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end

    schema_def_api.scalar_type "ID" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end

    schema_def_api.scalar_type "Int" do |t|
      t.mapping type: "integer"
      t.json_schema type: "integer", minimum: INT_MIN, maximum: INT_MAX

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "String" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end
  end

  def register_custom_elastic_graph_scalars
    schema_def_api.scalar_type "Cursor" do |t|
      # Technically, we don't use the mapping or json_schema on this type since it's a return-only
      # type and isn't indexed. However, `scalar_type` requires them to be set (since custom scalars
      # defined by users will need those set) so we set them here to what they would be if we actually
      # used them.
      t.mapping type: "keyword"
      t.json_schema type: "string"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Cursor",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/cursor"

      t.documentation <<~EOS
        An opaque string value representing a specific location in a paginated connection type.
        Returned cursors can be passed back in the next query via the `before` or `after`
        arguments to continue paginating from that point.
      EOS
    end

    schema_def_api.scalar_type "Date" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_FORMAT
      t.json_schema type: "string", format: "date"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Date",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date"

      t.documentation <<~EOS
        A date, represented as an [ISO 8601 date string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "Date") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "DateTime" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_TIME_FORMAT
      t.json_schema type: "string", format: "date-time"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::DateTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date_time"

      t.documentation <<~EOS
        A timestamp, represented as an [ISO 8601 time string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      date_time_time_of_day_ref = schema_def_state.type_ref("#{t.type_ref}TimeOfDay")

      t.customize_derived_types(
        t.type_ref.as_filter_input.to_final_form(as_input: true).name,
        t.type_ref.as_list_element_filter_input.to_final_form(as_input: true).name
      ) do |ft|
        ft.field names.time_of_day, date_time_time_of_day_ref.as_filter_input.name do |f|
          f.documentation "Matches records based on the time-of-day of the `DateTime` values."
        end
      end

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "DateTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end

      register_filter date_time_time_of_day_ref.name do |t|
        t.documentation <<~EOS
          Input type used to specify filters on the time-of-day of `DateTime` fields.

          Will be ignored if passed as an empty object (or as `null`).
        EOS

        fixup_doc = ->(doc_string) do
          doc_string.sub("the field value", "the time of day of the `DateTime` field value")
        end

        # Unlike a normal `equal_to_any_of` (which allows nullable elements to allow filtering to null values), we make
        # it non-nullable here because it's nonsensical to filter to where a DateTime's time-of-day is null.
        t.field names.equal_to_any_of, "[LocalTime!]" do |f|
          f.documentation fixup_doc.call(ScalarType::EQUAL_TO_ANY_OF_DOC)
        end

        t.field names.gt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GT_DOC)
        end

        t.field names.gte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GTE_DOC)
        end

        t.field names.lt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LT_DOC)
        end

        t.field names.lte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LTE_DOC)
        end

        t.field names.time_zone, "TimeZone!" do |f|
          f.documentation "TimeZone to use when comparing the `DateTime` values against the provided `LocalTime` values."
          f.default "UTC"
        end

        # With our initial implementation of `time_of_day` filtering, it's tricky to support `any_of`/`not` within
        # the `time_of_day: {...}` input object. They are still supported outside of `time_of_day` (on the parent
        # input object) so no functionality is losts by omitting these. Also, this aligns with our `GeoLocationDistanceFilterInput`
        # which is a similarly complex filter where we didn't include them.
        remove_any_of_and_not_filter_operators_on(t)
      end
    end

    schema_def_api.scalar_type "LocalTime" do |t|
      t.documentation <<~EOS
        A local time such as `"23:59:33"` or `"07:20:47.454"` without a time zone or offset, formatted based on the
        [partial-time portion of RFC3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6).
      EOS

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LocalTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/local_time"

      t.mapping type: "date", format: "HH:mm:ss||HH:mm:ss.S||HH:mm:ss.SS||HH:mm:ss.SSS"

      t.json_schema type: "string", pattern: VALID_LOCAL_TIME_JSON_SCHEMA_PATTERN

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "LocalTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "TimeZone" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string", enum: GraphQL::ScalarCoercionAdapters::VALID_TIME_ZONES.to_a
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::TimeZone",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/time_zone"

      t.documentation <<~EOS
        An [IANA time zone identifier](https://www.iana.org/time-zones), such as `America/Los_Angeles` or `UTC`.

        For a full list of valid identifiers, see the [wikipedia article](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
      EOS
    end

    schema_def_api.scalar_type "Untyped" do |t|
      # Allow any JSON for this type. The list of supported types is taken from:
      #
      # https://github.com/json-schema-org/json-schema-spec/blob/draft-07/schema.json#L23-L29
      #
      # ...except we are omitting `null` here; it'll be added by the nullability decorator if the field is defined as nullable.
      t.json_schema type: ["array", "boolean", "integer", "number", "object", "string"]

      # In the index we store this as a JSON string in a `keyword` field.
      t.mapping type: "keyword"

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Untyped",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/untyped"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Untyped",
        defined_at: "elastic_graph/indexer/indexing_preparers/untyped"

      t.documentation <<~EOS
        A custom scalar type that allows any type of data, including:

        - strings
        - numbers
        - objects and arrays (nested as deeply as you like)
        - booleans

        Note: fields of this type are effectively untyped. We recommend it only be used for
        parts of your schema that can't be statically typed.
      EOS
    end

    schema_def_api.scalar_type "JsonSafeLong" do |t|
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: JSON_SAFE_LONG_MIN, maximum: JSON_SAFE_LONG_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::JsonSafeLong",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values that can serialize safely as JSON.

        While JSON itself has no hard limit on the size of integers, the RFC-7159 spec
        mentions that values outside of the range #{format_number(JSON_SAFE_LONG_MIN)} (-(2^53) + 1)
        to #{format_number(JSON_SAFE_LONG_MAX)} (2^53 - 1) may not be interopable with all JSON
        implementations. As it turns out, the number implementation used by JavaScript
        has this issue. When you parse a JSON string that contains a numeric value like
        `4693522397653681111`, the parsed result will contain a rounded value like
        `4693522397653681000`.

        While this is entirely a client-side problem, we want to preserve maximum compatibility
        with common client languages. Given the ubiquity of GraphiQL as a GraphQL client,
        we want to avoid this problem.

        Our solution is to support two separate types:

        - This type (`JsonSafeLong`) is serialized as a number, but limits values to the safely
          serializable range.
        - The `LongString` type supports long values that use all 64 bits, but serializes as a
          string rather than a number, avoiding the JavaScript compatibility problems.

        For more background, see the [JavaScript `Number.MAX_SAFE_INTEGER`
        docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).
      EOS

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "LongString" do |t|
      # Note: while this type is returned from GraphQL queries as a string, we still
      # require it to be an integer in the JSON documents we index. We want min/max
      # validation on input (to avoid ingesting values that are larger than we can
      # handle). This is easy to do if we ingest these values as numbers, but hard
      # to do if we ingest them as strings. (The `pattern` regex to validate the range
      # would be *extremely* complicated).
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: LONG_STRING_MIN, maximum: LONG_STRING_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LongString",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"
      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values in the inclusive range -2^63
        (#{format_number(LONG_STRING_MIN)}) to (2^63 - 1) (#{format_number(LONG_STRING_MAX)}).

        Note that `LongString` values are serialized as strings within JSON, to avoid
        interopability problems with JavaScript. If you want a large integer type that
        serializes within JSON as a number, use `JsonSafeLong`.
      EOS

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The (approximate) sum of the field values within this grouping.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `LongString` return value. This field, as a double-precision `Float`, can
            represent larger sums, but the value may only be approximate.
          EOS
        end

        avt.field names.exact_sum, "JsonSafeLong", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The exact sum of the field values within this grouping, if it fits in a `JsonSafeLong`.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `JsonSafeLong`. In that case, `null` will be returned, and `#{names.approximate_sum}`
            can be used to get an approximate value.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "JsonSafeLong") do |adjective:, full_name:|
          approx_name = (full_name == "minimum") ? names.approximate_min : names.approximate_max

          <<~EOS
            So long as the grouping contains at least one non-null value, and no values exceed the
            `JsonSafeLong` range in the underlying indexed field, this will return an exact non-null value.

            If no non-null values are available, or if the #{full_name} value is outside the `JsonSafeLong`
            range, `null` will be returned. `#{approx_name}` can be used to differentiate between these
            cases and to get an approximate value.
          EOS
        end

        {
          names.exact_min => [:min, "minimum", names.approximate_min, "smallest"],
          names.exact_max => [:max, "maximum", names.approximate_max, "largest"]
        }.each do |exact_name, (func, full_name, approx_name, adjective)|
          avt.field approx_name, "LongString", graphql_only: true do |f|
            f. empty_bucket_value: nil, function: func

            f.documentation <<~EOS
              The #{full_name} of the field values within this grouping.

              The aggregation computation performed to identify the #{adjective} value is not able
              to maintain exact precision when dealing with values that are outside the `JsonSafeLong`
              range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
              In that case, the `#{exact_name}` field will return `null`, but this field will provide
              a value which may be approximate.
            EOS
          end
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            Note that the returned value is approximate. Imprecision can be introduced by the computation if
            any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
            to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end
  end

  def register_enum_types
    # Elasticsearch and OpenSearch treat weeks as beginning on Monday for date histogram aggregations.
    # Note that I can't find clear documentation on this.
    #
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/search-aggregations-bucket-datehistogram-aggregation.html#calendar_intervals
    #
    # > One week is the interval between the start day_of_week:hour:minute:second and
    # > the same day of the week and time of the following week in the specified time zone.
    #
    # However, we have observed that this is how it behaves. We verify it in this test:
    # elasticgraph-graphql/spec/acceptance/elasticgraph_graphql_spec.rb
    es_first_day_of_week = "Monday"

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    schema_def_api.enum_type "DateGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateTimeGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DateTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "LocalTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `LocalTime`.
      EOS

      t.value "HOUR" do |v|
        v.documentation "The hour a `LocalTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `LocalTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `LocalTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DistanceUnit" do |t|
      t.documentation "Enumerates the supported distance units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#distance-units
      t.value "MILE" do |v|
        v.documentation "A United States customary unit of 5,280 feet."
        v. datastore_abbreviation: :mi
      end

      t.value "YARD" do |v|
        v.documentation "A United States customary unit of 3 feet."
        v. datastore_abbreviation: :yd
      end

      t.value "FOOT" do |v|
        v.documentation "A United States customary unit of 12 inches."
        v. datastore_abbreviation: :ft
      end

      t.value "INCH" do |v|
        v.documentation "A United States customary unit equal to 1/12th of a foot."
        v. datastore_abbreviation: :in
      end

      t.value "KILOMETER" do |v|
        v.documentation "A metric system unit equal to 1,000 meters."
        v. datastore_abbreviation: :km
      end

      t.value "METER" do |v|
        v.documentation "The base unit of length in the metric system."
        v. datastore_abbreviation: :m
      end

      t.value "CENTIMETER" do |v|
        v.documentation "A metric system unit equal to 1/100th of a meter."
        v. datastore_abbreviation: :cm
      end

      t.value "MILLIMETER" do |v|
        v.documentation "A metric system unit equal to 1/1,000th of a meter."
        v. datastore_abbreviation: :mm
      end

      t.value "NAUTICAL_MILE" do |v|
        v.documentation "An international unit of length used for air, marine, and space navigation. Equivalent to 1,852 meters."
        v. datastore_abbreviation: :nmi
      end
    end

    schema_def_api.enum_type "DateTimeUnit" do |t|
      t.documentation "Enumeration of `DateTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end

      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end

      # These units, which Elasticsearch and OpenSearch support, only make sense to use when using the
      # Date nanoseconds type:
      #
      # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/date_nanos.html
      #
      # However, we currently only use the standard `Date` type, which has millisecond granularity,
      # For now these sub-millisecond granularities aren't useful to support, so we're not including
      # them at this time.
      #
      # t.value "MICROSECOND" do |v|
      #   v.documentation "1/1000th of a millisecond."
      #   v.update_runtime_metadata datastore_abbreviation: :micros
      # end
      #
      # t.value "NANOSECOND" do |v|
      #   v.documentation "1/1000th of a microsecond."
      #   v.update_runtime_metadata datastore_abbreviation: :nanos
      # end
    end

    schema_def_api.enum_type "DateUnit" do |t|
      t.documentation "Enumeration of `Date` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end
    end

    schema_def_api.enum_type "LocalTimeUnit" do |t|
      t.documentation "Enumeration of `LocalTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end
    end

    schema_def_api.enum_type "MatchesQueryAllowedEditsPerTerm" do |t|
      t.documentation "Enumeration of allowed values for the `#{names.matches_query}: {#{names.allowed_edits_per_term}: ...}` filter option."

      t.value "NONE" do |v|
        v.documentation "No allowed edits per term."
        v. datastore_abbreviation: :"0"
      end

      t.value "ONE" do |v|
        v.documentation "One allowed edit per term."
        v. datastore_abbreviation: :"1"
      end

      t.value "TWO" do |v|
        v.documentation "Two allowed edits per term."
        v. datastore_abbreviation: :"2"
      end

      t.value "DYNAMIC" do |v|
        v.documentation "Allowed edits per term is dynamically chosen based on the length of the term."
        v. datastore_abbreviation: :AUTO
      end
    end
  end

  def register_date_and_time_grouped_by_types
    # DateGroupedBy
    date = schema_def_state.type_ref("Date")
    register_framework_object_type date.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `Date` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `Date` value."
        define_date_grouping_arguments(f, omit_timezone: true)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f, omit_timezone: true)
      end
    end

    # DateTimeGroupedBy
    date_time = schema_def_state.type_ref("DateTime")
    register_framework_object_type date_time.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `DateTime` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date_time, "DateTime", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `DateTime` value."
        define_date_time_grouping_arguments(f)
      end

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the date is desired."
        define_date_grouping_arguments(f)
      end

      t.field names.as_time_of_day, "LocalTime", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the time-of-day is desired."
        define_local_time_grouping_arguments(f)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f)
      end
    end

    schema_def_api.enum_type "DayOfWeek" do |t|
      t.documentation "Indicates the specific day of the week."

      t.value "MONDAY" do |v|
        v.documentation "Monday."
      end

      t.value "TUESDAY" do |v|
        v.documentation "Tuesday."
      end

      t.value "WEDNESDAY" do |v|
        v.documentation "Wednesday."
      end

      t.value "THURSDAY" do |v|
        v.documentation "Thursday."
      end

      t.value "FRIDAY" do |v|
        v.documentation "Friday."
      end

      t.value "SATURDAY" do |v|
        v.documentation "Saturday."
      end

      t.value "SUNDAY" do |v|
        v.documentation "Sunday."
      end
    end
  end

  def define_date_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("Date"), <<~EOS, omit_timezone: omit_timezone)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_date_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DateTime"), <<~EOS)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_local_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("LocalTime"), <<~EOS)
      For example, when grouping by `HOUR`, you can apply an offset of -5 minutes to shift `LocalTime`
      values to the prior hour when they fall between the the top of an hour and 5 after.
    EOS
  end

  def define_day_of_week_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DayOfWeek"), <<~EOS, omit_timezone: omit_timezone, omit_truncation_unit: true)
      For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
      when they fall between midnight and 2 AM.
    EOS
  end

  def define_calendar_type_grouping_arguments(grouping_field, calendar_type, offset_example_description, omit_timezone: false, omit_truncation_unit: false)
    define_grouping_argument_offset(grouping_field, calendar_type, offset_example_description)
    define_grouping_argument_time_zone(grouping_field, calendar_type) unless omit_timezone
    define_grouping_argument_truncation_unit(grouping_field, calendar_type) unless omit_truncation_unit
  end

  def define_grouping_argument_offset(grouping_field, calendar_type, example_description)
    grouping_field.argument schema_def_state.schema_elements.offset, "#{calendar_type.name}GroupingOffsetInput" do |a|
      a.documentation <<~EOS
        Amount of offset (positive or negative) to shift the `#{calendar_type.name}` boundaries of each grouping bucket.

        #{example_description.strip}
      EOS
    end
  end

  def define_grouping_argument_time_zone(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.time_zone, "TimeZone!" do |a|
      a.documentation "The time zone to use when determining which grouping a `#{calendar_type.name}` value falls in."
      a.default "UTC"
    end
  end

  def define_grouping_argument_truncation_unit(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.truncation_unit, "#{calendar_type.name}GroupingTruncationUnit!" do |a|
      a.documentation "Determines the grouping truncation unit for this field."
    end
  end

  def define_integral_aggregated_values_for(scalar_type, long_type: "JsonSafeLong")
    scalar_type_name = scalar_type.name
    scalar_type.customize_aggregated_values_type do |t|
      # not nullable, since sum(empty_set) == 0
      t.field names.approximate_sum, "Float!", graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The (approximate) sum of the field values within this grouping.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}` return value. This field, as a double-precision `Float`, can
          represent larger sums, but the value may only be approximate.
        EOS
      end

      t.field names.exact_sum, long_type, graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The exact sum of the field values within this grouping, if it fits in a `#{long_type}`.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}`. In that case, `null` will be returned, and `#{names.approximate_sum}`
          can be used to get an approximate value.
        EOS
      end

      define_exact_min_and_max_on_aggregated_values(t, scalar_type_name) do |adjective:, full_name:|
        <<~EOS
          So long as the grouping contains at least one non-null value for the
          underlying indexed field, this will return an exact non-null value.
        EOS
      end

      t.field names.approximate_avg, "Float", graphql_only: true do |f|
        f. empty_bucket_value: nil, function: :avg

        f.documentation <<~EOS
          The average (mean) of the field values within this grouping.

          Note that the returned value is approximate. Imprecision can be introduced by the computation if
          any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
          to #{format_number(JSON_SAFE_LONG_MAX)}).
        EOS
      end
    end
  end

  def define_exact_min_max_and_approx_avg_on_aggregated_values(aggregated_values_type, scalar_type, &block)
    define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type, &block)

    aggregated_values_type.field names.approximate_avg, scalar_type, graphql_only: true do |f|
      f. empty_bucket_value: nil, function: :avg

      f.documentation <<~EOS
        The average (mean) of the field values within this grouping.
        The returned value will be rounded to the nearest `#{scalar_type}` value.
      EOS
    end
  end

  def define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type)
    {
      names.exact_min => [:min, "minimum", "smallest"],
      names.exact_max => [:max, "maximum", "largest"]
    }.each do |name, (func, full_name, adjective)|
      discussion = yield(adjective: adjective, full_name: full_name)

      aggregated_values_type.field name, scalar_type, graphql_only: true do |f|
        f. empty_bucket_value: nil, function: func

        f.documentation ["The #{full_name} of the field values within this grouping.", discussion].compact.join("\n\n")
      end
    end
  end

  def register_framework_object_type(name)
    schema_def_api.object_type(name) do |t|
      t.graphql_only true
      yield t
    end
  end

  def format_number(num)
    abs_value_formatted = num.to_s.reverse.scan(/\d{1,3}/).join(",").reverse
    (num < 0) ? "-#{abs_value_formatted}" : abs_value_formatted
  end

  def register_filter(type, &block)
    register_input_type(schema_def_state.factory.new_filter_input_type(type, &block))
  end

  def register_input_type(input_type)
    schema_def_state.register_input_type(input_type)
  end

  def remove_any_of_and_not_filter_operators_on(type)
    type.graphql_fields_by_name.delete(names.any_of)
    type.graphql_fields_by_name.delete(names.not)
  end
end

#schema_def_apiObject



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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# File 'lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb', line 166

class BuiltInTypes
  attr_reader :schema_def_api, :schema_def_state, :names

  # @private
  def initialize(schema_def_api, schema_def_state)
    @schema_def_api = schema_def_api
    @schema_def_state = schema_def_state
    @names = schema_def_state.schema_elements
  end

  # @private
  def register_built_in_types
    register_directives
    register_standard_graphql_scalars
    register_custom_elastic_graph_scalars
    register_enum_types
    register_date_and_time_grouped_by_types
    register_standard_elastic_graph_types
  end

  private

  def register_directives
    # Note: The `eg` prefix is being used based on a GraphQL Spec recommendation:
    # http://spec.graphql.org/October2021/#sec-Type-System.Directives.Custom-Directives
    schema_def_api.raw_sdl <<~EOS
      """
      Indicates an upper bound on how quickly a query must respond to meet the service-level objective.
      ElasticGraph will log a "good event" message if the query latency is less than or equal to this value,
      and a "bad event" message if the query latency is greater than this value. These messages can be used
      to drive an SLO dashboard.

      Note that the latency compared against this only contains processing time within ElasticGraph itself.
      Any time spent on sending the request or response over the network is not included in the comparison.
      """
      directive @#{names.eg_latency_slo}(#{names.ms}: Int!) on QUERY
    EOS
  end

  def register_standard_elastic_graph_types
    # This is a special filter on a `String` type, so we don't have a `Text` scalar to generate it from.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("String", name_prefix: "Text") do |t|
      # We can't support filtering on `null` within a list, so make the field non-nullable when it's the
      # `ListElementFilterInput` type. See scalar_type.rb for a larger comment explaining the rationale behind this.
      equal_to_any_of_type = t.type_ref.list_element_filter_input? ? "[String!]" : "[String]"
      t.field names.equal_to_any_of, equal_to_any_of_type do |f|
        f.documentation ScalarType::EQUAL_TO_ANY_OF_DOC
      end

      t.field names.matches, "String" do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided value using full text search.

          Will be ignored when `null` is passed.
        EOS

        f.directive "deprecated", reason: "Use `#{names.matches_query}` instead."
      end

      t.field names.matches_query, schema_def_state.type_ref("MatchesQuery").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided query using full text search.
          This is more lenient than `#{names.matches_phrase}`: the order of terms is ignored, and,
          by default, only one search term is required to be in the field value.

          Will be ignored when `null` is passed.
        EOS
      end

      t.field names.matches_phrase, schema_def_state.type_ref("MatchesPhrase").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value has a phrase matching the provided phrase using
          full text search. This is stricter than `#{names.matches_query}`: all terms must match
          and be in the same order as the provided phrase.

          Will be ignored when `null` is passed.
        EOS
      end
    end.each do |input_type|
      field_type = input_type.type_ref.list_filter_input? ? "[String]" : "String"
      input_type.documentation <<~EOS
        Input type used to specify filters on `#{field_type}` fields that have been indexed for full text search.

        Will be ignored if passed as an empty object (or as `null`).
      EOS

      register_input_type(input_type)
    end

    register_filter "MatchesQuery" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_query}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.query, "String!" do |f|
        f.documentation "The input query to search for."
      end

      t.field names.allowed_edits_per_term, "MatchesQueryAllowedEditsPerTerm!" do |f|
        f.documentation <<~EOS
          Number of allowed modifications per term to arrive at a match. For example, if set to 'ONE', the input
          term 'glue' would match 'blue' but not 'clued', since the latter requires two modifications.
        EOS

        f.default "DYNAMIC"
      end

      t.field names.require_all_terms, "Boolean!" do |f|
        f.documentation <<~EOS
          Set to `true` to match only if all terms in `#{names.query}` are found, or
          `false` to only require one term to be found.
        EOS

        f.default false
      end
    end

    register_filter "MatchesPhrase" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_phrase}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.phrase, "String!" do |f|
        f.documentation "The input phrase to search for."
      end
    end

    # This is defined as a built-in ElasticGraph type so that we can leverage Elasticsearch/OpenSearch GeoLocation features
    # based on the geo-point type:
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/geo-point.html
    schema_def_api.object_type "GeoLocation" do |t|
      t.documentation "Geographic coordinates representing a location on the Earth's surface."

      # As per the Elasticsearch docs, the field MUST come in named `lat` in Elastisearch (but we want the full name in GraphQL).
      t.field names.latitude, "Float", name_in_index: "lat" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -90, maximum: 90, nullable: false
      end

      # As per the Elasticsearch docs, the field MUST come in named `lon` in Elastisearch (but we want the full name in GraphQL).
      t.field names.longitude, "Float", name_in_index: "lon" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -180, maximum: 180, nullable: false
      end

      t.mapping type: "geo_point"
    end

    # Note: `GeoLocation` is an index leaf type even though it is a GraphQL object type. In the datastore,
    # it is indexed as an indivisible `geo_point` field.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("GeoLocation") do |t|
      t.field names.near, schema_def_state.type_ref("GeoLocationDistance").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field's geographic location is within a specified distance from the
          location identified by `#{names.latitude}` and `#{names.longitude}`.

          Will be ignored when `null` or an empty object is passed.
        EOS
      end
    end.each { |input_filter| register_input_type(input_filter) }

    register_filter "GeoLocationDistance" do |t|
      t.documentation "Input type used to specify distance filtering parameters on `GeoLocation` fields."

      # Note: all 4 of these fields (latitude, longitude, max_distance, unit) are required for this
      # filter to operator properly, so they are all non-null fields.

      t.field names.latitude, "Float!" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."
      end

      t.field names.longitude, "Float!" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."
      end

      t.field names.max_distance, "Float!" do |f|
        f.documentation <<~EOS
          Maximum distance (of the provided `#{names.unit}`) to consider "near" the location identified
          by `#{names.latitude}` and `#{names.longitude}`.
        EOS
      end

      t.field names.unit, "DistanceUnit!" do |f|
        f.documentation "Determines the unit of the specified `#{names.max_distance}`."
      end

      # any_of/not don't really make sense on this filter because it doesn't make sense to
      # apply an OR operator or negation to the fields of this type since they are all an
      # indivisible part of a single filter operation on a specific field. So we remove them
      # here.
      remove_any_of_and_not_filter_operators_on(t)
    end

    # Note: `has_next_page`/`has_previous_page` are required to be non-null by the relay
    # spec: https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo.
    # The cursors are required to be non-null by the relay spec, but it is nonsensical
    # when dealing with an empty collection, and relay itself implements it to be null:
    #
    # https://github.com/facebook/relay/commit/a17b462b3ff7355df4858a42ddda75f58c161302
    #
    # For more context, see:
    # https://github.com/rmosolgo/graphql-ruby/pull/2886#issuecomment-618414736
    # https://github.com/facebook/relay/pull/2655
    #
    # For now we will make the cursor fields nullable. It would be a breaking change
    # to go from non-null to null, but is not a breaking change to make it non-null
    # in the future.
    register_framework_object_type "PageInfo" do |t|
      t.documentation <<~EOS
        Provides information about the specific fetched page. This implements the `PageInfo`
        specification from the [Relay GraphQL Cursor Connections
        Specification](https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo).
      EOS

      t.field names.has_next_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available after the current one."
      end

      t.field names.has_previous_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available before the current one."
      end

      t.field names.start_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the first edge of the current page. This can be passed in the next query as
          a `before` argument to paginate backwards.
        EOS
      end

      t.field names.end_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the last edge of the current page. This can be passed in the next query as
          a `after` argument to paginate forwards.
        EOS
      end
    end

    schema_def_api.factory.new_input_type("DateTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DateTime` fields, representing the amount of offset
        (positive or negative) to shift the `DateTime` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DateTime` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DateTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DateGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `Date` fields, representing the amount of offset
        (positive or negative) to shift the `Date` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `Date` groupings."
      end

      t.field names.unit, "DateUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `Date` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DayOfWeekGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DayOfWeek` fields, representing the amount of offset
        (positive or negative) to shift the `DayOfWeek` boundaries of each grouping bucket.

        For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
        when they fall between midnight and 2 AM.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DayOfWeek` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DayOfWeek` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("LocalTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `LocalTime` fields, representing the amount of offset
        (positive or negative) to shift the `LocalTime` boundaries of each grouping bucket.

        For example, when grouping by `HOUR`, you can shift by 30 minutes to change
        what minute-of-hour hours are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `LocalTime` groupings."
      end

      t.field names.unit, "LocalTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `LocalTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_aggregated_values_type_for_index_leaf_type "NonNumeric" do |t|
      t.documentation "A return type used from aggregations to provided aggregated values over non-numeric fields."
    end.tap { |t| schema_def_api.state.register_object_interface_or_union_type(t) }

    register_framework_object_type "AggregationCountDetail" do |t|
      t.documentation "Provides detail about an aggregation `#{names.count}`."

      t.field names.approximate_value, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          The (approximate) count of documents in this aggregation bucket.

          When documents in an aggregation bucket are sourced from multiple shards, the count may be only
          approximate. The `#{names.upper_bound}` indicates the maximum value of the true count, but usually
          the true count is much closer to this approximate value (which also provides a lower bound on the
          true count).

          When this approximation is known to be exact, the same value will be available from `#{names.exact_value}`
          and `#{names.upper_bound}`.
        EOS
      end

      t.field names.exact_value, "JsonSafeLong", graphql_only: true do |f|
        f.documentation <<~EOS
          The exact count of documents in this aggregation bucket, if an exact value can be determined.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. When no exact value can be determined, this field will be `null`.
          The `#{names.approximate_value}` field--which will never be `null`--can be used to get an approximation
          for the count.
        EOS
      end

      t.field names.upper_bound, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          An upper bound on how large the true count of documents in this aggregation bucket could be.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. The `#{names.approximate_value}` field provides an approximation,
          and this field puts an upper bound on the true count.
        EOS
      end
    end
  end

  # Registers the standard GraphQL scalar types. Note that the SDL for the scalar type itself isn't
  # included in the dumped SDL, but registering it allows us to derive a filter for each,
  # which we need. In addition, this lets us define the mapping and JSON schema for each standard
  # scalar type.
  def register_standard_graphql_scalars
    schema_def_api.scalar_type "Boolean" do |t|
      t.mapping type: "boolean"
      t.json_schema type: "boolean"
    end

    schema_def_api.scalar_type "Float" do |t|
      t.mapping type: "double"
      t.json_schema type: "number"

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The sum of the field values within this grouping.

            As with all double-precision `Float` values, operations are subject to floating-point loss
            of precision, so the value may be approximate.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "Float") do |adjective:, full_name:|
          <<~EOS
            The value will be "exact" in that the aggregation computation will return
            the exact value of the #{adjective} float that has been indexed, without
            introducing any new imprecision. However, floats by their nature are
            naturally imprecise since they cannot precisely represent all real numbers.
          EOS
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            The computation of this value may introduce additional imprecision (on top of the
            natural imprecision of floats) when it deals with intermediary values that are
            outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end

    schema_def_api.scalar_type "ID" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end

    schema_def_api.scalar_type "Int" do |t|
      t.mapping type: "integer"
      t.json_schema type: "integer", minimum: INT_MIN, maximum: INT_MAX

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "String" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end
  end

  def register_custom_elastic_graph_scalars
    schema_def_api.scalar_type "Cursor" do |t|
      # Technically, we don't use the mapping or json_schema on this type since it's a return-only
      # type and isn't indexed. However, `scalar_type` requires them to be set (since custom scalars
      # defined by users will need those set) so we set them here to what they would be if we actually
      # used them.
      t.mapping type: "keyword"
      t.json_schema type: "string"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Cursor",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/cursor"

      t.documentation <<~EOS
        An opaque string value representing a specific location in a paginated connection type.
        Returned cursors can be passed back in the next query via the `before` or `after`
        arguments to continue paginating from that point.
      EOS
    end

    schema_def_api.scalar_type "Date" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_FORMAT
      t.json_schema type: "string", format: "date"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Date",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date"

      t.documentation <<~EOS
        A date, represented as an [ISO 8601 date string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "Date") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "DateTime" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_TIME_FORMAT
      t.json_schema type: "string", format: "date-time"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::DateTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date_time"

      t.documentation <<~EOS
        A timestamp, represented as an [ISO 8601 time string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      date_time_time_of_day_ref = schema_def_state.type_ref("#{t.type_ref}TimeOfDay")

      t.customize_derived_types(
        t.type_ref.as_filter_input.to_final_form(as_input: true).name,
        t.type_ref.as_list_element_filter_input.to_final_form(as_input: true).name
      ) do |ft|
        ft.field names.time_of_day, date_time_time_of_day_ref.as_filter_input.name do |f|
          f.documentation "Matches records based on the time-of-day of the `DateTime` values."
        end
      end

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "DateTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end

      register_filter date_time_time_of_day_ref.name do |t|
        t.documentation <<~EOS
          Input type used to specify filters on the time-of-day of `DateTime` fields.

          Will be ignored if passed as an empty object (or as `null`).
        EOS

        fixup_doc = ->(doc_string) do
          doc_string.sub("the field value", "the time of day of the `DateTime` field value")
        end

        # Unlike a normal `equal_to_any_of` (which allows nullable elements to allow filtering to null values), we make
        # it non-nullable here because it's nonsensical to filter to where a DateTime's time-of-day is null.
        t.field names.equal_to_any_of, "[LocalTime!]" do |f|
          f.documentation fixup_doc.call(ScalarType::EQUAL_TO_ANY_OF_DOC)
        end

        t.field names.gt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GT_DOC)
        end

        t.field names.gte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GTE_DOC)
        end

        t.field names.lt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LT_DOC)
        end

        t.field names.lte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LTE_DOC)
        end

        t.field names.time_zone, "TimeZone!" do |f|
          f.documentation "TimeZone to use when comparing the `DateTime` values against the provided `LocalTime` values."
          f.default "UTC"
        end

        # With our initial implementation of `time_of_day` filtering, it's tricky to support `any_of`/`not` within
        # the `time_of_day: {...}` input object. They are still supported outside of `time_of_day` (on the parent
        # input object) so no functionality is losts by omitting these. Also, this aligns with our `GeoLocationDistanceFilterInput`
        # which is a similarly complex filter where we didn't include them.
        remove_any_of_and_not_filter_operators_on(t)
      end
    end

    schema_def_api.scalar_type "LocalTime" do |t|
      t.documentation <<~EOS
        A local time such as `"23:59:33"` or `"07:20:47.454"` without a time zone or offset, formatted based on the
        [partial-time portion of RFC3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6).
      EOS

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LocalTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/local_time"

      t.mapping type: "date", format: "HH:mm:ss||HH:mm:ss.S||HH:mm:ss.SS||HH:mm:ss.SSS"

      t.json_schema type: "string", pattern: VALID_LOCAL_TIME_JSON_SCHEMA_PATTERN

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "LocalTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "TimeZone" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string", enum: GraphQL::ScalarCoercionAdapters::VALID_TIME_ZONES.to_a
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::TimeZone",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/time_zone"

      t.documentation <<~EOS
        An [IANA time zone identifier](https://www.iana.org/time-zones), such as `America/Los_Angeles` or `UTC`.

        For a full list of valid identifiers, see the [wikipedia article](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
      EOS
    end

    schema_def_api.scalar_type "Untyped" do |t|
      # Allow any JSON for this type. The list of supported types is taken from:
      #
      # https://github.com/json-schema-org/json-schema-spec/blob/draft-07/schema.json#L23-L29
      #
      # ...except we are omitting `null` here; it'll be added by the nullability decorator if the field is defined as nullable.
      t.json_schema type: ["array", "boolean", "integer", "number", "object", "string"]

      # In the index we store this as a JSON string in a `keyword` field.
      t.mapping type: "keyword"

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Untyped",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/untyped"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Untyped",
        defined_at: "elastic_graph/indexer/indexing_preparers/untyped"

      t.documentation <<~EOS
        A custom scalar type that allows any type of data, including:

        - strings
        - numbers
        - objects and arrays (nested as deeply as you like)
        - booleans

        Note: fields of this type are effectively untyped. We recommend it only be used for
        parts of your schema that can't be statically typed.
      EOS
    end

    schema_def_api.scalar_type "JsonSafeLong" do |t|
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: JSON_SAFE_LONG_MIN, maximum: JSON_SAFE_LONG_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::JsonSafeLong",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values that can serialize safely as JSON.

        While JSON itself has no hard limit on the size of integers, the RFC-7159 spec
        mentions that values outside of the range #{format_number(JSON_SAFE_LONG_MIN)} (-(2^53) + 1)
        to #{format_number(JSON_SAFE_LONG_MAX)} (2^53 - 1) may not be interopable with all JSON
        implementations. As it turns out, the number implementation used by JavaScript
        has this issue. When you parse a JSON string that contains a numeric value like
        `4693522397653681111`, the parsed result will contain a rounded value like
        `4693522397653681000`.

        While this is entirely a client-side problem, we want to preserve maximum compatibility
        with common client languages. Given the ubiquity of GraphiQL as a GraphQL client,
        we want to avoid this problem.

        Our solution is to support two separate types:

        - This type (`JsonSafeLong`) is serialized as a number, but limits values to the safely
          serializable range.
        - The `LongString` type supports long values that use all 64 bits, but serializes as a
          string rather than a number, avoiding the JavaScript compatibility problems.

        For more background, see the [JavaScript `Number.MAX_SAFE_INTEGER`
        docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).
      EOS

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "LongString" do |t|
      # Note: while this type is returned from GraphQL queries as a string, we still
      # require it to be an integer in the JSON documents we index. We want min/max
      # validation on input (to avoid ingesting values that are larger than we can
      # handle). This is easy to do if we ingest these values as numbers, but hard
      # to do if we ingest them as strings. (The `pattern` regex to validate the range
      # would be *extremely* complicated).
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: LONG_STRING_MIN, maximum: LONG_STRING_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LongString",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"
      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values in the inclusive range -2^63
        (#{format_number(LONG_STRING_MIN)}) to (2^63 - 1) (#{format_number(LONG_STRING_MAX)}).

        Note that `LongString` values are serialized as strings within JSON, to avoid
        interopability problems with JavaScript. If you want a large integer type that
        serializes within JSON as a number, use `JsonSafeLong`.
      EOS

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The (approximate) sum of the field values within this grouping.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `LongString` return value. This field, as a double-precision `Float`, can
            represent larger sums, but the value may only be approximate.
          EOS
        end

        avt.field names.exact_sum, "JsonSafeLong", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The exact sum of the field values within this grouping, if it fits in a `JsonSafeLong`.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `JsonSafeLong`. In that case, `null` will be returned, and `#{names.approximate_sum}`
            can be used to get an approximate value.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "JsonSafeLong") do |adjective:, full_name:|
          approx_name = (full_name == "minimum") ? names.approximate_min : names.approximate_max

          <<~EOS
            So long as the grouping contains at least one non-null value, and no values exceed the
            `JsonSafeLong` range in the underlying indexed field, this will return an exact non-null value.

            If no non-null values are available, or if the #{full_name} value is outside the `JsonSafeLong`
            range, `null` will be returned. `#{approx_name}` can be used to differentiate between these
            cases and to get an approximate value.
          EOS
        end

        {
          names.exact_min => [:min, "minimum", names.approximate_min, "smallest"],
          names.exact_max => [:max, "maximum", names.approximate_max, "largest"]
        }.each do |exact_name, (func, full_name, approx_name, adjective)|
          avt.field approx_name, "LongString", graphql_only: true do |f|
            f. empty_bucket_value: nil, function: func

            f.documentation <<~EOS
              The #{full_name} of the field values within this grouping.

              The aggregation computation performed to identify the #{adjective} value is not able
              to maintain exact precision when dealing with values that are outside the `JsonSafeLong`
              range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
              In that case, the `#{exact_name}` field will return `null`, but this field will provide
              a value which may be approximate.
            EOS
          end
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            Note that the returned value is approximate. Imprecision can be introduced by the computation if
            any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
            to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end
  end

  def register_enum_types
    # Elasticsearch and OpenSearch treat weeks as beginning on Monday for date histogram aggregations.
    # Note that I can't find clear documentation on this.
    #
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/search-aggregations-bucket-datehistogram-aggregation.html#calendar_intervals
    #
    # > One week is the interval between the start day_of_week:hour:minute:second and
    # > the same day of the week and time of the following week in the specified time zone.
    #
    # However, we have observed that this is how it behaves. We verify it in this test:
    # elasticgraph-graphql/spec/acceptance/elasticgraph_graphql_spec.rb
    es_first_day_of_week = "Monday"

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    schema_def_api.enum_type "DateGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateTimeGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DateTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "LocalTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `LocalTime`.
      EOS

      t.value "HOUR" do |v|
        v.documentation "The hour a `LocalTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `LocalTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `LocalTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DistanceUnit" do |t|
      t.documentation "Enumerates the supported distance units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#distance-units
      t.value "MILE" do |v|
        v.documentation "A United States customary unit of 5,280 feet."
        v. datastore_abbreviation: :mi
      end

      t.value "YARD" do |v|
        v.documentation "A United States customary unit of 3 feet."
        v. datastore_abbreviation: :yd
      end

      t.value "FOOT" do |v|
        v.documentation "A United States customary unit of 12 inches."
        v. datastore_abbreviation: :ft
      end

      t.value "INCH" do |v|
        v.documentation "A United States customary unit equal to 1/12th of a foot."
        v. datastore_abbreviation: :in
      end

      t.value "KILOMETER" do |v|
        v.documentation "A metric system unit equal to 1,000 meters."
        v. datastore_abbreviation: :km
      end

      t.value "METER" do |v|
        v.documentation "The base unit of length in the metric system."
        v. datastore_abbreviation: :m
      end

      t.value "CENTIMETER" do |v|
        v.documentation "A metric system unit equal to 1/100th of a meter."
        v. datastore_abbreviation: :cm
      end

      t.value "MILLIMETER" do |v|
        v.documentation "A metric system unit equal to 1/1,000th of a meter."
        v. datastore_abbreviation: :mm
      end

      t.value "NAUTICAL_MILE" do |v|
        v.documentation "An international unit of length used for air, marine, and space navigation. Equivalent to 1,852 meters."
        v. datastore_abbreviation: :nmi
      end
    end

    schema_def_api.enum_type "DateTimeUnit" do |t|
      t.documentation "Enumeration of `DateTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end

      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end

      # These units, which Elasticsearch and OpenSearch support, only make sense to use when using the
      # Date nanoseconds type:
      #
      # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/date_nanos.html
      #
      # However, we currently only use the standard `Date` type, which has millisecond granularity,
      # For now these sub-millisecond granularities aren't useful to support, so we're not including
      # them at this time.
      #
      # t.value "MICROSECOND" do |v|
      #   v.documentation "1/1000th of a millisecond."
      #   v.update_runtime_metadata datastore_abbreviation: :micros
      # end
      #
      # t.value "NANOSECOND" do |v|
      #   v.documentation "1/1000th of a microsecond."
      #   v.update_runtime_metadata datastore_abbreviation: :nanos
      # end
    end

    schema_def_api.enum_type "DateUnit" do |t|
      t.documentation "Enumeration of `Date` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end
    end

    schema_def_api.enum_type "LocalTimeUnit" do |t|
      t.documentation "Enumeration of `LocalTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end
    end

    schema_def_api.enum_type "MatchesQueryAllowedEditsPerTerm" do |t|
      t.documentation "Enumeration of allowed values for the `#{names.matches_query}: {#{names.allowed_edits_per_term}: ...}` filter option."

      t.value "NONE" do |v|
        v.documentation "No allowed edits per term."
        v. datastore_abbreviation: :"0"
      end

      t.value "ONE" do |v|
        v.documentation "One allowed edit per term."
        v. datastore_abbreviation: :"1"
      end

      t.value "TWO" do |v|
        v.documentation "Two allowed edits per term."
        v. datastore_abbreviation: :"2"
      end

      t.value "DYNAMIC" do |v|
        v.documentation "Allowed edits per term is dynamically chosen based on the length of the term."
        v. datastore_abbreviation: :AUTO
      end
    end
  end

  def register_date_and_time_grouped_by_types
    # DateGroupedBy
    date = schema_def_state.type_ref("Date")
    register_framework_object_type date.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `Date` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `Date` value."
        define_date_grouping_arguments(f, omit_timezone: true)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f, omit_timezone: true)
      end
    end

    # DateTimeGroupedBy
    date_time = schema_def_state.type_ref("DateTime")
    register_framework_object_type date_time.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `DateTime` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date_time, "DateTime", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `DateTime` value."
        define_date_time_grouping_arguments(f)
      end

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the date is desired."
        define_date_grouping_arguments(f)
      end

      t.field names.as_time_of_day, "LocalTime", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the time-of-day is desired."
        define_local_time_grouping_arguments(f)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f)
      end
    end

    schema_def_api.enum_type "DayOfWeek" do |t|
      t.documentation "Indicates the specific day of the week."

      t.value "MONDAY" do |v|
        v.documentation "Monday."
      end

      t.value "TUESDAY" do |v|
        v.documentation "Tuesday."
      end

      t.value "WEDNESDAY" do |v|
        v.documentation "Wednesday."
      end

      t.value "THURSDAY" do |v|
        v.documentation "Thursday."
      end

      t.value "FRIDAY" do |v|
        v.documentation "Friday."
      end

      t.value "SATURDAY" do |v|
        v.documentation "Saturday."
      end

      t.value "SUNDAY" do |v|
        v.documentation "Sunday."
      end
    end
  end

  def define_date_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("Date"), <<~EOS, omit_timezone: omit_timezone)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_date_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DateTime"), <<~EOS)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_local_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("LocalTime"), <<~EOS)
      For example, when grouping by `HOUR`, you can apply an offset of -5 minutes to shift `LocalTime`
      values to the prior hour when they fall between the the top of an hour and 5 after.
    EOS
  end

  def define_day_of_week_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DayOfWeek"), <<~EOS, omit_timezone: omit_timezone, omit_truncation_unit: true)
      For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
      when they fall between midnight and 2 AM.
    EOS
  end

  def define_calendar_type_grouping_arguments(grouping_field, calendar_type, offset_example_description, omit_timezone: false, omit_truncation_unit: false)
    define_grouping_argument_offset(grouping_field, calendar_type, offset_example_description)
    define_grouping_argument_time_zone(grouping_field, calendar_type) unless omit_timezone
    define_grouping_argument_truncation_unit(grouping_field, calendar_type) unless omit_truncation_unit
  end

  def define_grouping_argument_offset(grouping_field, calendar_type, example_description)
    grouping_field.argument schema_def_state.schema_elements.offset, "#{calendar_type.name}GroupingOffsetInput" do |a|
      a.documentation <<~EOS
        Amount of offset (positive or negative) to shift the `#{calendar_type.name}` boundaries of each grouping bucket.

        #{example_description.strip}
      EOS
    end
  end

  def define_grouping_argument_time_zone(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.time_zone, "TimeZone!" do |a|
      a.documentation "The time zone to use when determining which grouping a `#{calendar_type.name}` value falls in."
      a.default "UTC"
    end
  end

  def define_grouping_argument_truncation_unit(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.truncation_unit, "#{calendar_type.name}GroupingTruncationUnit!" do |a|
      a.documentation "Determines the grouping truncation unit for this field."
    end
  end

  def define_integral_aggregated_values_for(scalar_type, long_type: "JsonSafeLong")
    scalar_type_name = scalar_type.name
    scalar_type.customize_aggregated_values_type do |t|
      # not nullable, since sum(empty_set) == 0
      t.field names.approximate_sum, "Float!", graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The (approximate) sum of the field values within this grouping.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}` return value. This field, as a double-precision `Float`, can
          represent larger sums, but the value may only be approximate.
        EOS
      end

      t.field names.exact_sum, long_type, graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The exact sum of the field values within this grouping, if it fits in a `#{long_type}`.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}`. In that case, `null` will be returned, and `#{names.approximate_sum}`
          can be used to get an approximate value.
        EOS
      end

      define_exact_min_and_max_on_aggregated_values(t, scalar_type_name) do |adjective:, full_name:|
        <<~EOS
          So long as the grouping contains at least one non-null value for the
          underlying indexed field, this will return an exact non-null value.
        EOS
      end

      t.field names.approximate_avg, "Float", graphql_only: true do |f|
        f. empty_bucket_value: nil, function: :avg

        f.documentation <<~EOS
          The average (mean) of the field values within this grouping.

          Note that the returned value is approximate. Imprecision can be introduced by the computation if
          any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
          to #{format_number(JSON_SAFE_LONG_MAX)}).
        EOS
      end
    end
  end

  def define_exact_min_max_and_approx_avg_on_aggregated_values(aggregated_values_type, scalar_type, &block)
    define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type, &block)

    aggregated_values_type.field names.approximate_avg, scalar_type, graphql_only: true do |f|
      f. empty_bucket_value: nil, function: :avg

      f.documentation <<~EOS
        The average (mean) of the field values within this grouping.
        The returned value will be rounded to the nearest `#{scalar_type}` value.
      EOS
    end
  end

  def define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type)
    {
      names.exact_min => [:min, "minimum", "smallest"],
      names.exact_max => [:max, "maximum", "largest"]
    }.each do |name, (func, full_name, adjective)|
      discussion = yield(adjective: adjective, full_name: full_name)

      aggregated_values_type.field name, scalar_type, graphql_only: true do |f|
        f. empty_bucket_value: nil, function: func

        f.documentation ["The #{full_name} of the field values within this grouping.", discussion].compact.join("\n\n")
      end
    end
  end

  def register_framework_object_type(name)
    schema_def_api.object_type(name) do |t|
      t.graphql_only true
      yield t
    end
  end

  def format_number(num)
    abs_value_formatted = num.to_s.reverse.scan(/\d{1,3}/).join(",").reverse
    (num < 0) ? "-#{abs_value_formatted}" : abs_value_formatted
  end

  def register_filter(type, &block)
    register_input_type(schema_def_state.factory.new_filter_input_type(type, &block))
  end

  def register_input_type(input_type)
    schema_def_state.register_input_type(input_type)
  end

  def remove_any_of_and_not_filter_operators_on(type)
    type.graphql_fields_by_name.delete(names.any_of)
    type.graphql_fields_by_name.delete(names.not)
  end
end

#schema_def_stateObject



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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# File 'lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb', line 166

class BuiltInTypes
  attr_reader :schema_def_api, :schema_def_state, :names

  # @private
  def initialize(schema_def_api, schema_def_state)
    @schema_def_api = schema_def_api
    @schema_def_state = schema_def_state
    @names = schema_def_state.schema_elements
  end

  # @private
  def register_built_in_types
    register_directives
    register_standard_graphql_scalars
    register_custom_elastic_graph_scalars
    register_enum_types
    register_date_and_time_grouped_by_types
    register_standard_elastic_graph_types
  end

  private

  def register_directives
    # Note: The `eg` prefix is being used based on a GraphQL Spec recommendation:
    # http://spec.graphql.org/October2021/#sec-Type-System.Directives.Custom-Directives
    schema_def_api.raw_sdl <<~EOS
      """
      Indicates an upper bound on how quickly a query must respond to meet the service-level objective.
      ElasticGraph will log a "good event" message if the query latency is less than or equal to this value,
      and a "bad event" message if the query latency is greater than this value. These messages can be used
      to drive an SLO dashboard.

      Note that the latency compared against this only contains processing time within ElasticGraph itself.
      Any time spent on sending the request or response over the network is not included in the comparison.
      """
      directive @#{names.eg_latency_slo}(#{names.ms}: Int!) on QUERY
    EOS
  end

  def register_standard_elastic_graph_types
    # This is a special filter on a `String` type, so we don't have a `Text` scalar to generate it from.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("String", name_prefix: "Text") do |t|
      # We can't support filtering on `null` within a list, so make the field non-nullable when it's the
      # `ListElementFilterInput` type. See scalar_type.rb for a larger comment explaining the rationale behind this.
      equal_to_any_of_type = t.type_ref.list_element_filter_input? ? "[String!]" : "[String]"
      t.field names.equal_to_any_of, equal_to_any_of_type do |f|
        f.documentation ScalarType::EQUAL_TO_ANY_OF_DOC
      end

      t.field names.matches, "String" do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided value using full text search.

          Will be ignored when `null` is passed.
        EOS

        f.directive "deprecated", reason: "Use `#{names.matches_query}` instead."
      end

      t.field names.matches_query, schema_def_state.type_ref("MatchesQuery").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value matches the provided query using full text search.
          This is more lenient than `#{names.matches_phrase}`: the order of terms is ignored, and,
          by default, only one search term is required to be in the field value.

          Will be ignored when `null` is passed.
        EOS
      end

      t.field names.matches_phrase, schema_def_state.type_ref("MatchesPhrase").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field value has a phrase matching the provided phrase using
          full text search. This is stricter than `#{names.matches_query}`: all terms must match
          and be in the same order as the provided phrase.

          Will be ignored when `null` is passed.
        EOS
      end
    end.each do |input_type|
      field_type = input_type.type_ref.list_filter_input? ? "[String]" : "String"
      input_type.documentation <<~EOS
        Input type used to specify filters on `#{field_type}` fields that have been indexed for full text search.

        Will be ignored if passed as an empty object (or as `null`).
      EOS

      register_input_type(input_type)
    end

    register_filter "MatchesQuery" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_query}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.query, "String!" do |f|
        f.documentation "The input query to search for."
      end

      t.field names.allowed_edits_per_term, "MatchesQueryAllowedEditsPerTerm!" do |f|
        f.documentation <<~EOS
          Number of allowed modifications per term to arrive at a match. For example, if set to 'ONE', the input
          term 'glue' would match 'blue' but not 'clued', since the latter requires two modifications.
        EOS

        f.default "DYNAMIC"
      end

      t.field names.require_all_terms, "Boolean!" do |f|
        f.documentation <<~EOS
          Set to `true` to match only if all terms in `#{names.query}` are found, or
          `false` to only require one term to be found.
        EOS

        f.default false
      end
    end

    register_filter "MatchesPhrase" do |t|
      t.documentation <<~EOS
        Input type used to specify parameters for the `#{names.matches_phrase}` filtering operator.

        Will be ignored if passed as `null`.
      EOS

      t.field names.phrase, "String!" do |f|
        f.documentation "The input phrase to search for."
      end
    end

    # This is defined as a built-in ElasticGraph type so that we can leverage Elasticsearch/OpenSearch GeoLocation features
    # based on the geo-point type:
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/geo-point.html
    schema_def_api.object_type "GeoLocation" do |t|
      t.documentation "Geographic coordinates representing a location on the Earth's surface."

      # As per the Elasticsearch docs, the field MUST come in named `lat` in Elastisearch (but we want the full name in GraphQL).
      t.field names.latitude, "Float", name_in_index: "lat" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -90, maximum: 90, nullable: false
      end

      # As per the Elasticsearch docs, the field MUST come in named `lon` in Elastisearch (but we want the full name in GraphQL).
      t.field names.longitude, "Float", name_in_index: "lon" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."

        # Note: we use `nullable: false` because we index it as a single `geo_point` field, and therefore can't
        # support a `latitude` without a `longitude` or vice-versa.
        f.json_schema minimum: -180, maximum: 180, nullable: false
      end

      t.mapping type: "geo_point"
    end

    # Note: `GeoLocation` is an index leaf type even though it is a GraphQL object type. In the datastore,
    # it is indexed as an indivisible `geo_point` field.
    schema_def_state.factory.build_standard_filter_input_types_for_index_leaf_type("GeoLocation") do |t|
      t.field names.near, schema_def_state.type_ref("GeoLocationDistance").as_filter_input.name do |f|
        f.documentation <<~EOS
          Matches records where the field's geographic location is within a specified distance from the
          location identified by `#{names.latitude}` and `#{names.longitude}`.

          Will be ignored when `null` or an empty object is passed.
        EOS
      end
    end.each { |input_filter| register_input_type(input_filter) }

    register_filter "GeoLocationDistance" do |t|
      t.documentation "Input type used to specify distance filtering parameters on `GeoLocation` fields."

      # Note: all 4 of these fields (latitude, longitude, max_distance, unit) are required for this
      # filter to operator properly, so they are all non-null fields.

      t.field names.latitude, "Float!" do |f|
        f.documentation "Angular distance north or south of the Earth's equator, measured in degrees from -90 to +90."
      end

      t.field names.longitude, "Float!" do |f|
        f.documentation "Angular distance east or west of the Prime Meridian at Greenwich, UK, measured in degrees from -180 to +180."
      end

      t.field names.max_distance, "Float!" do |f|
        f.documentation <<~EOS
          Maximum distance (of the provided `#{names.unit}`) to consider "near" the location identified
          by `#{names.latitude}` and `#{names.longitude}`.
        EOS
      end

      t.field names.unit, "DistanceUnit!" do |f|
        f.documentation "Determines the unit of the specified `#{names.max_distance}`."
      end

      # any_of/not don't really make sense on this filter because it doesn't make sense to
      # apply an OR operator or negation to the fields of this type since they are all an
      # indivisible part of a single filter operation on a specific field. So we remove them
      # here.
      remove_any_of_and_not_filter_operators_on(t)
    end

    # Note: `has_next_page`/`has_previous_page` are required to be non-null by the relay
    # spec: https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo.
    # The cursors are required to be non-null by the relay spec, but it is nonsensical
    # when dealing with an empty collection, and relay itself implements it to be null:
    #
    # https://github.com/facebook/relay/commit/a17b462b3ff7355df4858a42ddda75f58c161302
    #
    # For more context, see:
    # https://github.com/rmosolgo/graphql-ruby/pull/2886#issuecomment-618414736
    # https://github.com/facebook/relay/pull/2655
    #
    # For now we will make the cursor fields nullable. It would be a breaking change
    # to go from non-null to null, but is not a breaking change to make it non-null
    # in the future.
    register_framework_object_type "PageInfo" do |t|
      t.documentation <<~EOS
        Provides information about the specific fetched page. This implements the `PageInfo`
        specification from the [Relay GraphQL Cursor Connections
        Specification](https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo).
      EOS

      t.field names.has_next_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available after the current one."
      end

      t.field names.has_previous_page, "Boolean!", graphql_only: true do |f|
        f.documentation "Indicates if there is another page of results available before the current one."
      end

      t.field names.start_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the first edge of the current page. This can be passed in the next query as
          a `before` argument to paginate backwards.
        EOS
      end

      t.field names.end_cursor, "Cursor", graphql_only: true do |f|
        f.documentation <<~EOS
          The `Cursor` of the last edge of the current page. This can be passed in the next query as
          a `after` argument to paginate forwards.
        EOS
      end
    end

    schema_def_api.factory.new_input_type("DateTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DateTime` fields, representing the amount of offset
        (positive or negative) to shift the `DateTime` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DateTime` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DateTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DateGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `Date` fields, representing the amount of offset
        (positive or negative) to shift the `Date` boundaries of each grouping bucket.

        For example, when grouping by `WEEK`, you can shift by 1 day to change
        what day-of-week weeks are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `Date` groupings."
      end

      t.field names.unit, "DateUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `Date` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("DayOfWeekGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `DayOfWeek` fields, representing the amount of offset
        (positive or negative) to shift the `DayOfWeek` boundaries of each grouping bucket.

        For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
        when they fall between midnight and 2 AM.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `DayOfWeek` groupings."
      end

      t.field names.unit, "DateTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `DayOfWeek` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_input_type("LocalTimeGroupingOffsetInput") do |t|
      t.documentation <<~EOS
        Input type offered when grouping on `LocalTime` fields, representing the amount of offset
        (positive or negative) to shift the `LocalTime` boundaries of each grouping bucket.

        For example, when grouping by `HOUR`, you can shift by 30 minutes to change
        what minute-of-hour hours are considered to start on.
      EOS

      t.field names.amount, "Int!" do |f|
        f.documentation "Number (positive or negative) of the given `#{names.unit}` to offset the boundaries of the `LocalTime` groupings."
      end

      t.field names.unit, "LocalTimeUnit!" do |f|
        f.documentation "Unit of offsetting to apply to the boundaries of the `LocalTime` groupings."
      end

      register_input_type(t)
    end

    schema_def_api.factory.new_aggregated_values_type_for_index_leaf_type "NonNumeric" do |t|
      t.documentation "A return type used from aggregations to provided aggregated values over non-numeric fields."
    end.tap { |t| schema_def_api.state.register_object_interface_or_union_type(t) }

    register_framework_object_type "AggregationCountDetail" do |t|
      t.documentation "Provides detail about an aggregation `#{names.count}`."

      t.field names.approximate_value, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          The (approximate) count of documents in this aggregation bucket.

          When documents in an aggregation bucket are sourced from multiple shards, the count may be only
          approximate. The `#{names.upper_bound}` indicates the maximum value of the true count, but usually
          the true count is much closer to this approximate value (which also provides a lower bound on the
          true count).

          When this approximation is known to be exact, the same value will be available from `#{names.exact_value}`
          and `#{names.upper_bound}`.
        EOS
      end

      t.field names.exact_value, "JsonSafeLong", graphql_only: true do |f|
        f.documentation <<~EOS
          The exact count of documents in this aggregation bucket, if an exact value can be determined.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. When no exact value can be determined, this field will be `null`.
          The `#{names.approximate_value}` field--which will never be `null`--can be used to get an approximation
          for the count.
        EOS
      end

      t.field names.upper_bound, "JsonSafeLong!", graphql_only: true do |f|
        f.documentation <<~EOS
          An upper bound on how large the true count of documents in this aggregation bucket could be.

          When documents in an aggregation bucket are sourced from multiple shards, it may not be possible to
          efficiently determine an exact value. The `#{names.approximate_value}` field provides an approximation,
          and this field puts an upper bound on the true count.
        EOS
      end
    end
  end

  # Registers the standard GraphQL scalar types. Note that the SDL for the scalar type itself isn't
  # included in the dumped SDL, but registering it allows us to derive a filter for each,
  # which we need. In addition, this lets us define the mapping and JSON schema for each standard
  # scalar type.
  def register_standard_graphql_scalars
    schema_def_api.scalar_type "Boolean" do |t|
      t.mapping type: "boolean"
      t.json_schema type: "boolean"
    end

    schema_def_api.scalar_type "Float" do |t|
      t.mapping type: "double"
      t.json_schema type: "number"

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The sum of the field values within this grouping.

            As with all double-precision `Float` values, operations are subject to floating-point loss
            of precision, so the value may be approximate.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "Float") do |adjective:, full_name:|
          <<~EOS
            The value will be "exact" in that the aggregation computation will return
            the exact value of the #{adjective} float that has been indexed, without
            introducing any new imprecision. However, floats by their nature are
            naturally imprecise since they cannot precisely represent all real numbers.
          EOS
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            The computation of this value may introduce additional imprecision (on top of the
            natural imprecision of floats) when it deals with intermediary values that are
            outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end

    schema_def_api.scalar_type "ID" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end

    schema_def_api.scalar_type "Int" do |t|
      t.mapping type: "integer"
      t.json_schema type: "integer", minimum: INT_MIN, maximum: INT_MAX

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "String" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string"
    end
  end

  def register_custom_elastic_graph_scalars
    schema_def_api.scalar_type "Cursor" do |t|
      # Technically, we don't use the mapping or json_schema on this type since it's a return-only
      # type and isn't indexed. However, `scalar_type` requires them to be set (since custom scalars
      # defined by users will need those set) so we set them here to what they would be if we actually
      # used them.
      t.mapping type: "keyword"
      t.json_schema type: "string"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Cursor",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/cursor"

      t.documentation <<~EOS
        An opaque string value representing a specific location in a paginated connection type.
        Returned cursors can be passed back in the next query via the `before` or `after`
        arguments to continue paginating from that point.
      EOS
    end

    schema_def_api.scalar_type "Date" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_FORMAT
      t.json_schema type: "string", format: "date"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Date",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date"

      t.documentation <<~EOS
        A date, represented as an [ISO 8601 date string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "Date") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "DateTime" do |t|
      t.mapping type: "date", format: DATASTORE_DATE_TIME_FORMAT
      t.json_schema type: "string", format: "date-time"
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::DateTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/date_time"

      t.documentation <<~EOS
        A timestamp, represented as an [ISO 8601 time string](https://en.wikipedia.org/wiki/ISO_8601).
      EOS

      date_time_time_of_day_ref = schema_def_state.type_ref("#{t.type_ref}TimeOfDay")

      t.customize_derived_types(
        t.type_ref.as_filter_input.to_final_form(as_input: true).name,
        t.type_ref.as_list_element_filter_input.to_final_form(as_input: true).name
      ) do |ft|
        ft.field names.time_of_day, date_time_time_of_day_ref.as_filter_input.name do |f|
          f.documentation "Matches records based on the time-of-day of the `DateTime` values."
        end
      end

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "DateTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end

      register_filter date_time_time_of_day_ref.name do |t|
        t.documentation <<~EOS
          Input type used to specify filters on the time-of-day of `DateTime` fields.

          Will be ignored if passed as an empty object (or as `null`).
        EOS

        fixup_doc = ->(doc_string) do
          doc_string.sub("the field value", "the time of day of the `DateTime` field value")
        end

        # Unlike a normal `equal_to_any_of` (which allows nullable elements to allow filtering to null values), we make
        # it non-nullable here because it's nonsensical to filter to where a DateTime's time-of-day is null.
        t.field names.equal_to_any_of, "[LocalTime!]" do |f|
          f.documentation fixup_doc.call(ScalarType::EQUAL_TO_ANY_OF_DOC)
        end

        t.field names.gt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GT_DOC)
        end

        t.field names.gte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::GTE_DOC)
        end

        t.field names.lt, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LT_DOC)
        end

        t.field names.lte, "LocalTime" do |f|
          f.documentation fixup_doc.call(ScalarType::LTE_DOC)
        end

        t.field names.time_zone, "TimeZone!" do |f|
          f.documentation "TimeZone to use when comparing the `DateTime` values against the provided `LocalTime` values."
          f.default "UTC"
        end

        # With our initial implementation of `time_of_day` filtering, it's tricky to support `any_of`/`not` within
        # the `time_of_day: {...}` input object. They are still supported outside of `time_of_day` (on the parent
        # input object) so no functionality is losts by omitting these. Also, this aligns with our `GeoLocationDistanceFilterInput`
        # which is a similarly complex filter where we didn't include them.
        remove_any_of_and_not_filter_operators_on(t)
      end
    end

    schema_def_api.scalar_type "LocalTime" do |t|
      t.documentation <<~EOS
        A local time such as `"23:59:33"` or `"07:20:47.454"` without a time zone or offset, formatted based on the
        [partial-time portion of RFC3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6).
      EOS

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LocalTime",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/local_time"

      t.mapping type: "date", format: "HH:mm:ss||HH:mm:ss.S||HH:mm:ss.SS||HH:mm:ss.SSS"

      t.json_schema type: "string", pattern: VALID_LOCAL_TIME_JSON_SCHEMA_PATTERN

      t.customize_aggregated_values_type do |avt|
        define_exact_min_max_and_approx_avg_on_aggregated_values(avt, "LocalTime") do |adjective:, full_name:|
          <<~EOS
            So long as the grouping contains at least one non-null value for the
            underlying indexed field, this will return an exact non-null value.
          EOS
        end
      end
    end

    schema_def_api.scalar_type "TimeZone" do |t|
      t.mapping type: "keyword"
      t.json_schema type: "string", enum: GraphQL::ScalarCoercionAdapters::VALID_TIME_ZONES.to_a
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::TimeZone",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/time_zone"

      t.documentation <<~EOS
        An [IANA time zone identifier](https://www.iana.org/time-zones), such as `America/Los_Angeles` or `UTC`.

        For a full list of valid identifiers, see the [wikipedia article](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
      EOS
    end

    schema_def_api.scalar_type "Untyped" do |t|
      # Allow any JSON for this type. The list of supported types is taken from:
      #
      # https://github.com/json-schema-org/json-schema-spec/blob/draft-07/schema.json#L23-L29
      #
      # ...except we are omitting `null` here; it'll be added by the nullability decorator if the field is defined as nullable.
      t.json_schema type: ["array", "boolean", "integer", "number", "object", "string"]

      # In the index we store this as a JSON string in a `keyword` field.
      t.mapping type: "keyword"

      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::Untyped",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/untyped"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Untyped",
        defined_at: "elastic_graph/indexer/indexing_preparers/untyped"

      t.documentation <<~EOS
        A custom scalar type that allows any type of data, including:

        - strings
        - numbers
        - objects and arrays (nested as deeply as you like)
        - booleans

        Note: fields of this type are effectively untyped. We recommend it only be used for
        parts of your schema that can't be statically typed.
      EOS
    end

    schema_def_api.scalar_type "JsonSafeLong" do |t|
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: JSON_SAFE_LONG_MIN, maximum: JSON_SAFE_LONG_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::JsonSafeLong",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"

      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values that can serialize safely as JSON.

        While JSON itself has no hard limit on the size of integers, the RFC-7159 spec
        mentions that values outside of the range #{format_number(JSON_SAFE_LONG_MIN)} (-(2^53) + 1)
        to #{format_number(JSON_SAFE_LONG_MAX)} (2^53 - 1) may not be interopable with all JSON
        implementations. As it turns out, the number implementation used by JavaScript
        has this issue. When you parse a JSON string that contains a numeric value like
        `4693522397653681111`, the parsed result will contain a rounded value like
        `4693522397653681000`.

        While this is entirely a client-side problem, we want to preserve maximum compatibility
        with common client languages. Given the ubiquity of GraphiQL as a GraphQL client,
        we want to avoid this problem.

        Our solution is to support two separate types:

        - This type (`JsonSafeLong`) is serialized as a number, but limits values to the safely
          serializable range.
        - The `LongString` type supports long values that use all 64 bits, but serializes as a
          string rather than a number, avoiding the JavaScript compatibility problems.

        For more background, see the [JavaScript `Number.MAX_SAFE_INTEGER`
        docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).
      EOS

      define_integral_aggregated_values_for(t)
    end

    schema_def_api.scalar_type "LongString" do |t|
      # Note: while this type is returned from GraphQL queries as a string, we still
      # require it to be an integer in the JSON documents we index. We want min/max
      # validation on input (to avoid ingesting values that are larger than we can
      # handle). This is easy to do if we ingest these values as numbers, but hard
      # to do if we ingest them as strings. (The `pattern` regex to validate the range
      # would be *extremely* complicated).
      t.mapping type: "long"
      t.json_schema type: "integer", minimum: LONG_STRING_MIN, maximum: LONG_STRING_MAX
      t.coerce_with "ElasticGraph::GraphQL::ScalarCoercionAdapters::LongString",
        defined_at: "elastic_graph/graphql/scalar_coercion_adapters/longs"
      t.prepare_for_indexing_with "ElasticGraph::Indexer::IndexingPreparers::Integer",
        defined_at: "elastic_graph/indexer/indexing_preparers/integer"

      t.documentation <<~EOS
        A numeric type for large integer values in the inclusive range -2^63
        (#{format_number(LONG_STRING_MIN)}) to (2^63 - 1) (#{format_number(LONG_STRING_MAX)}).

        Note that `LongString` values are serialized as strings within JSON, to avoid
        interopability problems with JavaScript. If you want a large integer type that
        serializes within JSON as a number, use `JsonSafeLong`.
      EOS

      t.customize_aggregated_values_type do |avt|
        # not nullable, since sum(empty_set) == 0
        avt.field names.approximate_sum, "Float!", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The (approximate) sum of the field values within this grouping.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `LongString` return value. This field, as a double-precision `Float`, can
            represent larger sums, but the value may only be approximate.
          EOS
        end

        avt.field names.exact_sum, "JsonSafeLong", graphql_only: true do |f|
          f. empty_bucket_value: 0, function: :sum

          f.documentation <<~EOS
            The exact sum of the field values within this grouping, if it fits in a `JsonSafeLong`.

            Sums of large `LongString` values can result in overflow, where the exact sum cannot
            fit in a `JsonSafeLong`. In that case, `null` will be returned, and `#{names.approximate_sum}`
            can be used to get an approximate value.
          EOS
        end

        define_exact_min_and_max_on_aggregated_values(avt, "JsonSafeLong") do |adjective:, full_name:|
          approx_name = (full_name == "minimum") ? names.approximate_min : names.approximate_max

          <<~EOS
            So long as the grouping contains at least one non-null value, and no values exceed the
            `JsonSafeLong` range in the underlying indexed field, this will return an exact non-null value.

            If no non-null values are available, or if the #{full_name} value is outside the `JsonSafeLong`
            range, `null` will be returned. `#{approx_name}` can be used to differentiate between these
            cases and to get an approximate value.
          EOS
        end

        {
          names.exact_min => [:min, "minimum", names.approximate_min, "smallest"],
          names.exact_max => [:max, "maximum", names.approximate_max, "largest"]
        }.each do |exact_name, (func, full_name, approx_name, adjective)|
          avt.field approx_name, "LongString", graphql_only: true do |f|
            f. empty_bucket_value: nil, function: func

            f.documentation <<~EOS
              The #{full_name} of the field values within this grouping.

              The aggregation computation performed to identify the #{adjective} value is not able
              to maintain exact precision when dealing with values that are outside the `JsonSafeLong`
              range (#{format_number(JSON_SAFE_LONG_MIN)} to #{format_number(JSON_SAFE_LONG_MAX)}).
              In that case, the `#{exact_name}` field will return `null`, but this field will provide
              a value which may be approximate.
            EOS
          end
        end

        avt.field names.approximate_avg, "Float", graphql_only: true do |f|
          f. empty_bucket_value: nil, function: :avg

          f.documentation <<~EOS
            The average (mean) of the field values within this grouping.

            Note that the returned value is approximate. Imprecision can be introduced by the computation if
            any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
            to #{format_number(JSON_SAFE_LONG_MAX)}).
          EOS
        end
      end
    end
  end

  def register_enum_types
    # Elasticsearch and OpenSearch treat weeks as beginning on Monday for date histogram aggregations.
    # Note that I can't find clear documentation on this.
    #
    # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/search-aggregations-bucket-datehistogram-aggregation.html#calendar_intervals
    #
    # > One week is the interval between the start day_of_week:hour:minute:second and
    # > the same day of the week and time of the following week in the specified time zone.
    #
    # However, we have observed that this is how it behaves. We verify it in this test:
    # elasticgraph-graphql/spec/acceptance/elasticgraph_graphql_spec.rb
    es_first_day_of_week = "Monday"

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    schema_def_api.enum_type "DateGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `Date`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `Date` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `Date` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `Date` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `Date` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The exact day of a `Date`."
        v. datastore_value: "day"
      end
    end

    # TODO: Drop support for legacy grouping schema
    schema_def_api.enum_type "DateTimeGroupingGranularity" do |t|
      t.documentation <<~EOS
        Enumerates the supported granularities of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DateTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `DateTime`.
      EOS

      t.value "YEAR" do |v|
        v.documentation "The year a `DateTime` falls in."
        v. datastore_value: "year"
      end

      t.value "QUARTER" do |v|
        v.documentation "The quarter a `DateTime` falls in."
        v. datastore_value: "quarter"
      end

      t.value "MONTH" do |v|
        v.documentation "The month a `DateTime` falls in."
        v. datastore_value: "month"
      end

      t.value "WEEK" do |v|
        v.documentation "The week, beginning on #{es_first_day_of_week}, a `DateTime` falls in."
        v. datastore_value: "week"
      end

      t.value "DAY" do |v|
        v.documentation "The day a `DateTime` falls in."
        v. datastore_value: "day"
      end

      t.value "HOUR" do |v|
        v.documentation "The hour a `DateTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `DateTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `DateTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "LocalTimeGroupingTruncationUnit" do |t|
      t.documentation <<~EOS
        Enumerates the supported truncation units of a `LocalTime`.
      EOS

      t.value "HOUR" do |v|
        v.documentation "The hour a `LocalTime` falls in."
        v. datastore_value: "hour"
      end

      t.value "MINUTE" do |v|
        v.documentation "The minute a `LocalTime` falls in."
        v. datastore_value: "minute"
      end

      t.value "SECOND" do |v|
        v.documentation "The second a `LocalTime` falls in."
        v. datastore_value: "second"
      end
    end

    schema_def_api.enum_type "DistanceUnit" do |t|
      t.documentation "Enumerates the supported distance units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#distance-units
      t.value "MILE" do |v|
        v.documentation "A United States customary unit of 5,280 feet."
        v. datastore_abbreviation: :mi
      end

      t.value "YARD" do |v|
        v.documentation "A United States customary unit of 3 feet."
        v. datastore_abbreviation: :yd
      end

      t.value "FOOT" do |v|
        v.documentation "A United States customary unit of 12 inches."
        v. datastore_abbreviation: :ft
      end

      t.value "INCH" do |v|
        v.documentation "A United States customary unit equal to 1/12th of a foot."
        v. datastore_abbreviation: :in
      end

      t.value "KILOMETER" do |v|
        v.documentation "A metric system unit equal to 1,000 meters."
        v. datastore_abbreviation: :km
      end

      t.value "METER" do |v|
        v.documentation "The base unit of length in the metric system."
        v. datastore_abbreviation: :m
      end

      t.value "CENTIMETER" do |v|
        v.documentation "A metric system unit equal to 1/100th of a meter."
        v. datastore_abbreviation: :cm
      end

      t.value "MILLIMETER" do |v|
        v.documentation "A metric system unit equal to 1/1,000th of a meter."
        v. datastore_abbreviation: :mm
      end

      t.value "NAUTICAL_MILE" do |v|
        v.documentation "An international unit of length used for air, marine, and space navigation. Equivalent to 1,852 meters."
        v. datastore_abbreviation: :nmi
      end
    end

    schema_def_api.enum_type "DateTimeUnit" do |t|
      t.documentation "Enumeration of `DateTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end

      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end

      # These units, which Elasticsearch and OpenSearch support, only make sense to use when using the
      # Date nanoseconds type:
      #
      # https://www.elastic.co/guide/en/elasticsearch/reference/7.10/date_nanos.html
      #
      # However, we currently only use the standard `Date` type, which has millisecond granularity,
      # For now these sub-millisecond granularities aren't useful to support, so we're not including
      # them at this time.
      #
      # t.value "MICROSECOND" do |v|
      #   v.documentation "1/1000th of a millisecond."
      #   v.update_runtime_metadata datastore_abbreviation: :micros
      # end
      #
      # t.value "NANOSECOND" do |v|
      #   v.documentation "1/1000th of a microsecond."
      #   v.update_runtime_metadata datastore_abbreviation: :nanos
      # end
    end

    schema_def_api.enum_type "DateUnit" do |t|
      t.documentation "Enumeration of `Date` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "DAY" do |v|
        v.documentation "The time period of a full rotation of the Earth with respect to the Sun."
        v. datastore_abbreviation: :d, datastore_value: 86_400_000
      end
    end

    schema_def_api.enum_type "LocalTimeUnit" do |t|
      t.documentation "Enumeration of `LocalTime` units."

      # Values here are taken from: https://www.elastic.co/guide/en/elasticsearch/reference/7.10/common-options.html#time-units
      t.value "HOUR" do |v|
        v.documentation "1/24th of a day."
        v. datastore_abbreviation: :h, datastore_value: 3_600_000
      end

      t.value "MINUTE" do |v|
        v.documentation "1/60th of an hour."
        v. datastore_abbreviation: :m, datastore_value: 60_000
      end

      t.value "SECOND" do |v|
        v.documentation "1/60th of a minute."
        v. datastore_abbreviation: :s, datastore_value: 1_000
      end

      t.value "MILLISECOND" do |v|
        v.documentation "1/1000th of a second."
        v. datastore_abbreviation: :ms, datastore_value: 1
      end
    end

    schema_def_api.enum_type "MatchesQueryAllowedEditsPerTerm" do |t|
      t.documentation "Enumeration of allowed values for the `#{names.matches_query}: {#{names.allowed_edits_per_term}: ...}` filter option."

      t.value "NONE" do |v|
        v.documentation "No allowed edits per term."
        v. datastore_abbreviation: :"0"
      end

      t.value "ONE" do |v|
        v.documentation "One allowed edit per term."
        v. datastore_abbreviation: :"1"
      end

      t.value "TWO" do |v|
        v.documentation "Two allowed edits per term."
        v. datastore_abbreviation: :"2"
      end

      t.value "DYNAMIC" do |v|
        v.documentation "Allowed edits per term is dynamically chosen based on the length of the term."
        v. datastore_abbreviation: :AUTO
      end
    end
  end

  def register_date_and_time_grouped_by_types
    # DateGroupedBy
    date = schema_def_state.type_ref("Date")
    register_framework_object_type date.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `Date` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `Date` value."
        define_date_grouping_arguments(f, omit_timezone: true)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f, omit_timezone: true)
      end
    end

    # DateTimeGroupedBy
    date_time = schema_def_state.type_ref("DateTime")
    register_framework_object_type date_time.as_grouped_by.name do |t|
      t.documentation "Allows for grouping `DateTime` values based on the desired return type."
      t. = {elasticgraph_category: :date_grouped_by_object}

      t.field names.as_date_time, "DateTime", graphql_only: true do |f|
        f.documentation "Used when grouping on the full `DateTime` value."
        define_date_time_grouping_arguments(f)
      end

      t.field names.as_date, "Date", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the date is desired."
        define_date_grouping_arguments(f)
      end

      t.field names.as_time_of_day, "LocalTime", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on just the time-of-day is desired."
        define_local_time_grouping_arguments(f)
      end

      t.field names.as_day_of_week, "DayOfWeek", graphql_only: true do |f|
        f.documentation "An alternative to `#{names.as_date_time}` for when grouping on the day-of-week is desired."
        define_day_of_week_grouping_arguments(f)
      end
    end

    schema_def_api.enum_type "DayOfWeek" do |t|
      t.documentation "Indicates the specific day of the week."

      t.value "MONDAY" do |v|
        v.documentation "Monday."
      end

      t.value "TUESDAY" do |v|
        v.documentation "Tuesday."
      end

      t.value "WEDNESDAY" do |v|
        v.documentation "Wednesday."
      end

      t.value "THURSDAY" do |v|
        v.documentation "Thursday."
      end

      t.value "FRIDAY" do |v|
        v.documentation "Friday."
      end

      t.value "SATURDAY" do |v|
        v.documentation "Saturday."
      end

      t.value "SUNDAY" do |v|
        v.documentation "Sunday."
      end
    end
  end

  def define_date_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("Date"), <<~EOS, omit_timezone: omit_timezone)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_date_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DateTime"), <<~EOS)
      For example, when grouping by `WEEK`, you can shift by 1 day to change what day-of-week weeks are considered to start on.
    EOS
  end

  def define_local_time_grouping_arguments(grouping_field)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("LocalTime"), <<~EOS)
      For example, when grouping by `HOUR`, you can apply an offset of -5 minutes to shift `LocalTime`
      values to the prior hour when they fall between the the top of an hour and 5 after.
    EOS
  end

  def define_day_of_week_grouping_arguments(grouping_field, omit_timezone: false)
    define_calendar_type_grouping_arguments(grouping_field, schema_def_state.type_ref("DayOfWeek"), <<~EOS, omit_timezone: omit_timezone, omit_truncation_unit: true)
      For example, you can apply an offset of -2 hours to shift `DateTime` values to the prior `DayOfWeek`
      when they fall between midnight and 2 AM.
    EOS
  end

  def define_calendar_type_grouping_arguments(grouping_field, calendar_type, offset_example_description, omit_timezone: false, omit_truncation_unit: false)
    define_grouping_argument_offset(grouping_field, calendar_type, offset_example_description)
    define_grouping_argument_time_zone(grouping_field, calendar_type) unless omit_timezone
    define_grouping_argument_truncation_unit(grouping_field, calendar_type) unless omit_truncation_unit
  end

  def define_grouping_argument_offset(grouping_field, calendar_type, example_description)
    grouping_field.argument schema_def_state.schema_elements.offset, "#{calendar_type.name}GroupingOffsetInput" do |a|
      a.documentation <<~EOS
        Amount of offset (positive or negative) to shift the `#{calendar_type.name}` boundaries of each grouping bucket.

        #{example_description.strip}
      EOS
    end
  end

  def define_grouping_argument_time_zone(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.time_zone, "TimeZone!" do |a|
      a.documentation "The time zone to use when determining which grouping a `#{calendar_type.name}` value falls in."
      a.default "UTC"
    end
  end

  def define_grouping_argument_truncation_unit(grouping_field, calendar_type)
    grouping_field.argument schema_def_state.schema_elements.truncation_unit, "#{calendar_type.name}GroupingTruncationUnit!" do |a|
      a.documentation "Determines the grouping truncation unit for this field."
    end
  end

  def define_integral_aggregated_values_for(scalar_type, long_type: "JsonSafeLong")
    scalar_type_name = scalar_type.name
    scalar_type.customize_aggregated_values_type do |t|
      # not nullable, since sum(empty_set) == 0
      t.field names.approximate_sum, "Float!", graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The (approximate) sum of the field values within this grouping.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}` return value. This field, as a double-precision `Float`, can
          represent larger sums, but the value may only be approximate.
        EOS
      end

      t.field names.exact_sum, long_type, graphql_only: true do |f|
        f. empty_bucket_value: 0, function: :sum

        f.documentation <<~EOS
          The exact sum of the field values within this grouping, if it fits in a `#{long_type}`.

          Sums of large `#{scalar_type_name}` values can result in overflow, where the exact sum cannot
          fit in a `#{long_type}`. In that case, `null` will be returned, and `#{names.approximate_sum}`
          can be used to get an approximate value.
        EOS
      end

      define_exact_min_and_max_on_aggregated_values(t, scalar_type_name) do |adjective:, full_name:|
        <<~EOS
          So long as the grouping contains at least one non-null value for the
          underlying indexed field, this will return an exact non-null value.
        EOS
      end

      t.field names.approximate_avg, "Float", graphql_only: true do |f|
        f. empty_bucket_value: nil, function: :avg

        f.documentation <<~EOS
          The average (mean) of the field values within this grouping.

          Note that the returned value is approximate. Imprecision can be introduced by the computation if
          any intermediary values fall outside the `JsonSafeLong` range (#{format_number(JSON_SAFE_LONG_MIN)}
          to #{format_number(JSON_SAFE_LONG_MAX)}).
        EOS
      end
    end
  end

  def define_exact_min_max_and_approx_avg_on_aggregated_values(aggregated_values_type, scalar_type, &block)
    define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type, &block)

    aggregated_values_type.field names.approximate_avg, scalar_type, graphql_only: true do |f|
      f. empty_bucket_value: nil, function: :avg

      f.documentation <<~EOS
        The average (mean) of the field values within this grouping.
        The returned value will be rounded to the nearest `#{scalar_type}` value.
      EOS
    end
  end

  def define_exact_min_and_max_on_aggregated_values(aggregated_values_type, scalar_type)
    {
      names.exact_min => [:min, "minimum", "smallest"],
      names.exact_max => [:max, "maximum", "largest"]
    }.each do |name, (func, full_name, adjective)|
      discussion = yield(adjective: adjective, full_name: full_name)

      aggregated_values_type.field name, scalar_type, graphql_only: true do |f|
        f. empty_bucket_value: nil, function: func

        f.documentation ["The #{full_name} of the field values within this grouping.", discussion].compact.join("\n\n")
      end
    end
  end

  def register_framework_object_type(name)
    schema_def_api.object_type(name) do |t|
      t.graphql_only true
      yield t
    end
  end

  def format_number(num)
    abs_value_formatted = num.to_s.reverse.scan(/\d{1,3}/).join(",").reverse
    (num < 0) ? "-#{abs_value_formatted}" : abs_value_formatted
  end

  def register_filter(type, &block)
    register_input_type(schema_def_state.factory.new_filter_input_type(type, &block))
  end

  def register_input_type(input_type)
    schema_def_state.register_input_type(input_type)
  end

  def remove_any_of_and_not_filter_operators_on(type)
    type.graphql_fields_by_name.delete(names.any_of)
    type.graphql_fields_by_name.delete(names.not)
  end
end

Instance Method Details

#register_built_in_typesObject



177
178
179
180
181
182
183
184
# File 'lib/elastic_graph/schema_definition/schema_elements/built_in_types.rb', line 177

def register_built_in_types
  register_directives
  register_standard_graphql_scalars
  register_custom_elastic_graph_scalars
  register_enum_types
  register_date_and_time_grouped_by_types
  register_standard_elastic_graph_types
end