@promoboxx/graphql-gateway-types 1.236.0 → 1.237.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/graphql.schema.json +1030 -128
- package/index.d.ts +113 -0
- package/package.json +1 -1
- package/schema.graphql +143 -0
package/graphql.schema.json
CHANGED
|
@@ -92699,6 +92699,103 @@
|
|
|
92699
92699
|
},
|
|
92700
92700
|
"isDeprecated": false,
|
|
92701
92701
|
"deprecationReason": null
|
|
92702
|
+
},
|
|
92703
|
+
{
|
|
92704
|
+
"name": "verified_address",
|
|
92705
|
+
"description": "A computed field, executes function \"enrichment_queries_verified_addresses\"",
|
|
92706
|
+
"args": [
|
|
92707
|
+
{
|
|
92708
|
+
"name": "distinct_on",
|
|
92709
|
+
"description": "distinct select on columns",
|
|
92710
|
+
"type": {
|
|
92711
|
+
"kind": "LIST",
|
|
92712
|
+
"name": null,
|
|
92713
|
+
"ofType": {
|
|
92714
|
+
"kind": "NON_NULL",
|
|
92715
|
+
"name": null,
|
|
92716
|
+
"ofType": {
|
|
92717
|
+
"kind": "ENUM",
|
|
92718
|
+
"name": "verified_addresses_select_column",
|
|
92719
|
+
"ofType": null
|
|
92720
|
+
}
|
|
92721
|
+
}
|
|
92722
|
+
},
|
|
92723
|
+
"defaultValue": null,
|
|
92724
|
+
"isDeprecated": false,
|
|
92725
|
+
"deprecationReason": null
|
|
92726
|
+
},
|
|
92727
|
+
{
|
|
92728
|
+
"name": "limit",
|
|
92729
|
+
"description": "limit the number of rows returned",
|
|
92730
|
+
"type": {
|
|
92731
|
+
"kind": "SCALAR",
|
|
92732
|
+
"name": "Int",
|
|
92733
|
+
"ofType": null
|
|
92734
|
+
},
|
|
92735
|
+
"defaultValue": null,
|
|
92736
|
+
"isDeprecated": false,
|
|
92737
|
+
"deprecationReason": null
|
|
92738
|
+
},
|
|
92739
|
+
{
|
|
92740
|
+
"name": "offset",
|
|
92741
|
+
"description": "skip the first n rows. Use only with order_by",
|
|
92742
|
+
"type": {
|
|
92743
|
+
"kind": "SCALAR",
|
|
92744
|
+
"name": "Int",
|
|
92745
|
+
"ofType": null
|
|
92746
|
+
},
|
|
92747
|
+
"defaultValue": null,
|
|
92748
|
+
"isDeprecated": false,
|
|
92749
|
+
"deprecationReason": null
|
|
92750
|
+
},
|
|
92751
|
+
{
|
|
92752
|
+
"name": "order_by",
|
|
92753
|
+
"description": "sort the rows by one or more columns",
|
|
92754
|
+
"type": {
|
|
92755
|
+
"kind": "LIST",
|
|
92756
|
+
"name": null,
|
|
92757
|
+
"ofType": {
|
|
92758
|
+
"kind": "NON_NULL",
|
|
92759
|
+
"name": null,
|
|
92760
|
+
"ofType": {
|
|
92761
|
+
"kind": "INPUT_OBJECT",
|
|
92762
|
+
"name": "verified_addresses_order_by",
|
|
92763
|
+
"ofType": null
|
|
92764
|
+
}
|
|
92765
|
+
}
|
|
92766
|
+
},
|
|
92767
|
+
"defaultValue": null,
|
|
92768
|
+
"isDeprecated": false,
|
|
92769
|
+
"deprecationReason": null
|
|
92770
|
+
},
|
|
92771
|
+
{
|
|
92772
|
+
"name": "where",
|
|
92773
|
+
"description": "filter the rows returned",
|
|
92774
|
+
"type": {
|
|
92775
|
+
"kind": "INPUT_OBJECT",
|
|
92776
|
+
"name": "verified_addresses_bool_exp",
|
|
92777
|
+
"ofType": null
|
|
92778
|
+
},
|
|
92779
|
+
"defaultValue": null,
|
|
92780
|
+
"isDeprecated": false,
|
|
92781
|
+
"deprecationReason": null
|
|
92782
|
+
}
|
|
92783
|
+
],
|
|
92784
|
+
"type": {
|
|
92785
|
+
"kind": "LIST",
|
|
92786
|
+
"name": null,
|
|
92787
|
+
"ofType": {
|
|
92788
|
+
"kind": "NON_NULL",
|
|
92789
|
+
"name": null,
|
|
92790
|
+
"ofType": {
|
|
92791
|
+
"kind": "OBJECT",
|
|
92792
|
+
"name": "verified_addresses",
|
|
92793
|
+
"ofType": null
|
|
92794
|
+
}
|
|
92795
|
+
}
|
|
92796
|
+
},
|
|
92797
|
+
"isDeprecated": false,
|
|
92798
|
+
"deprecationReason": null
|
|
92702
92799
|
}
|
|
92703
92800
|
],
|
|
92704
92801
|
"inputFields": null,
|
|
@@ -93228,6 +93325,18 @@
|
|
|
93228
93325
|
"defaultValue": null,
|
|
93229
93326
|
"isDeprecated": false,
|
|
93230
93327
|
"deprecationReason": null
|
|
93328
|
+
},
|
|
93329
|
+
{
|
|
93330
|
+
"name": "verified_address",
|
|
93331
|
+
"description": null,
|
|
93332
|
+
"type": {
|
|
93333
|
+
"kind": "INPUT_OBJECT",
|
|
93334
|
+
"name": "verified_addresses_bool_exp",
|
|
93335
|
+
"ofType": null
|
|
93336
|
+
},
|
|
93337
|
+
"defaultValue": null,
|
|
93338
|
+
"isDeprecated": false,
|
|
93339
|
+
"deprecationReason": null
|
|
93231
93340
|
}
|
|
93232
93341
|
],
|
|
93233
93342
|
"interfaces": null,
|
|
@@ -94076,6 +94185,18 @@
|
|
|
94076
94185
|
"defaultValue": null,
|
|
94077
94186
|
"isDeprecated": false,
|
|
94078
94187
|
"deprecationReason": null
|
|
94188
|
+
},
|
|
94189
|
+
{
|
|
94190
|
+
"name": "verified_address_aggregate",
|
|
94191
|
+
"description": null,
|
|
94192
|
+
"type": {
|
|
94193
|
+
"kind": "INPUT_OBJECT",
|
|
94194
|
+
"name": "verified_addresses_aggregate_order_by",
|
|
94195
|
+
"ofType": null
|
|
94196
|
+
},
|
|
94197
|
+
"defaultValue": null,
|
|
94198
|
+
"isDeprecated": false,
|
|
94199
|
+
"deprecationReason": null
|
|
94079
94200
|
}
|
|
94080
94201
|
],
|
|
94081
94202
|
"interfaces": null,
|
|
@@ -114627,94 +114748,52 @@
|
|
|
114627
114748
|
},
|
|
114628
114749
|
{
|
|
114629
114750
|
"kind": "INPUT_OBJECT",
|
|
114630
|
-
"name": "
|
|
114631
|
-
"description": "
|
|
114751
|
+
"name": "verified_addresses_aggregate_order_by",
|
|
114752
|
+
"description": "order by aggregate values of table \"verified_addresses\"",
|
|
114632
114753
|
"fields": null,
|
|
114633
114754
|
"inputFields": [
|
|
114634
114755
|
{
|
|
114635
|
-
"name": "
|
|
114756
|
+
"name": "avg",
|
|
114636
114757
|
"description": null,
|
|
114637
114758
|
"type": {
|
|
114638
|
-
"kind": "
|
|
114639
|
-
"name": "
|
|
114759
|
+
"kind": "INPUT_OBJECT",
|
|
114760
|
+
"name": "verified_addresses_avg_order_by",
|
|
114640
114761
|
"ofType": null
|
|
114641
114762
|
},
|
|
114642
114763
|
"defaultValue": null,
|
|
114643
114764
|
"isDeprecated": false,
|
|
114644
114765
|
"deprecationReason": null
|
|
114645
|
-
}
|
|
114646
|
-
],
|
|
114647
|
-
"interfaces": null,
|
|
114648
|
-
"enumValues": null,
|
|
114649
|
-
"possibleTypes": null
|
|
114650
|
-
},
|
|
114651
|
-
{
|
|
114652
|
-
"kind": "OBJECT",
|
|
114653
|
-
"name": "verified_addresses_avg_fields",
|
|
114654
|
-
"description": "aggregate avg on columns",
|
|
114655
|
-
"fields": [
|
|
114766
|
+
},
|
|
114656
114767
|
{
|
|
114657
|
-
"name": "
|
|
114768
|
+
"name": "count",
|
|
114658
114769
|
"description": null,
|
|
114659
|
-
"args": [],
|
|
114660
114770
|
"type": {
|
|
114661
|
-
"kind": "
|
|
114662
|
-
"name": "
|
|
114771
|
+
"kind": "ENUM",
|
|
114772
|
+
"name": "order_by",
|
|
114663
114773
|
"ofType": null
|
|
114664
114774
|
},
|
|
114775
|
+
"defaultValue": null,
|
|
114665
114776
|
"isDeprecated": false,
|
|
114666
114777
|
"deprecationReason": null
|
|
114667
114778
|
},
|
|
114668
114779
|
{
|
|
114669
|
-
"name": "
|
|
114780
|
+
"name": "max",
|
|
114670
114781
|
"description": null,
|
|
114671
|
-
"args": [],
|
|
114672
114782
|
"type": {
|
|
114673
|
-
"kind": "
|
|
114674
|
-
"name": "
|
|
114783
|
+
"kind": "INPUT_OBJECT",
|
|
114784
|
+
"name": "verified_addresses_max_order_by",
|
|
114675
114785
|
"ofType": null
|
|
114676
114786
|
},
|
|
114677
|
-
"isDeprecated": false,
|
|
114678
|
-
"deprecationReason": null
|
|
114679
|
-
}
|
|
114680
|
-
],
|
|
114681
|
-
"inputFields": null,
|
|
114682
|
-
"interfaces": [],
|
|
114683
|
-
"enumValues": null,
|
|
114684
|
-
"possibleTypes": null
|
|
114685
|
-
},
|
|
114686
|
-
{
|
|
114687
|
-
"kind": "INPUT_OBJECT",
|
|
114688
|
-
"name": "verified_addresses_bool_exp",
|
|
114689
|
-
"description": "Boolean expression to filter rows from the table \"verified_addresses\". All fields are combined with a logical 'AND'.",
|
|
114690
|
-
"fields": null,
|
|
114691
|
-
"inputFields": [
|
|
114692
|
-
{
|
|
114693
|
-
"name": "_and",
|
|
114694
|
-
"description": null,
|
|
114695
|
-
"type": {
|
|
114696
|
-
"kind": "LIST",
|
|
114697
|
-
"name": null,
|
|
114698
|
-
"ofType": {
|
|
114699
|
-
"kind": "NON_NULL",
|
|
114700
|
-
"name": null,
|
|
114701
|
-
"ofType": {
|
|
114702
|
-
"kind": "INPUT_OBJECT",
|
|
114703
|
-
"name": "verified_addresses_bool_exp",
|
|
114704
|
-
"ofType": null
|
|
114705
|
-
}
|
|
114706
|
-
}
|
|
114707
|
-
},
|
|
114708
114787
|
"defaultValue": null,
|
|
114709
114788
|
"isDeprecated": false,
|
|
114710
114789
|
"deprecationReason": null
|
|
114711
114790
|
},
|
|
114712
114791
|
{
|
|
114713
|
-
"name": "
|
|
114792
|
+
"name": "min",
|
|
114714
114793
|
"description": null,
|
|
114715
114794
|
"type": {
|
|
114716
114795
|
"kind": "INPUT_OBJECT",
|
|
114717
|
-
"name": "
|
|
114796
|
+
"name": "verified_addresses_min_order_by",
|
|
114718
114797
|
"ofType": null
|
|
114719
114798
|
},
|
|
114720
114799
|
"defaultValue": null,
|
|
@@ -114722,31 +114801,23 @@
|
|
|
114722
114801
|
"deprecationReason": null
|
|
114723
114802
|
},
|
|
114724
114803
|
{
|
|
114725
|
-
"name": "
|
|
114804
|
+
"name": "stddev",
|
|
114726
114805
|
"description": null,
|
|
114727
114806
|
"type": {
|
|
114728
|
-
"kind": "
|
|
114729
|
-
"name":
|
|
114730
|
-
"ofType":
|
|
114731
|
-
"kind": "NON_NULL",
|
|
114732
|
-
"name": null,
|
|
114733
|
-
"ofType": {
|
|
114734
|
-
"kind": "INPUT_OBJECT",
|
|
114735
|
-
"name": "verified_addresses_bool_exp",
|
|
114736
|
-
"ofType": null
|
|
114737
|
-
}
|
|
114738
|
-
}
|
|
114807
|
+
"kind": "INPUT_OBJECT",
|
|
114808
|
+
"name": "verified_addresses_stddev_order_by",
|
|
114809
|
+
"ofType": null
|
|
114739
114810
|
},
|
|
114740
114811
|
"defaultValue": null,
|
|
114741
114812
|
"isDeprecated": false,
|
|
114742
114813
|
"deprecationReason": null
|
|
114743
114814
|
},
|
|
114744
114815
|
{
|
|
114745
|
-
"name": "
|
|
114816
|
+
"name": "stddev_pop",
|
|
114746
114817
|
"description": null,
|
|
114747
114818
|
"type": {
|
|
114748
114819
|
"kind": "INPUT_OBJECT",
|
|
114749
|
-
"name": "
|
|
114820
|
+
"name": "verified_addresses_stddev_pop_order_by",
|
|
114750
114821
|
"ofType": null
|
|
114751
114822
|
},
|
|
114752
114823
|
"defaultValue": null,
|
|
@@ -114754,11 +114825,11 @@
|
|
|
114754
114825
|
"deprecationReason": null
|
|
114755
114826
|
},
|
|
114756
114827
|
{
|
|
114757
|
-
"name": "
|
|
114828
|
+
"name": "stddev_samp",
|
|
114758
114829
|
"description": null,
|
|
114759
114830
|
"type": {
|
|
114760
114831
|
"kind": "INPUT_OBJECT",
|
|
114761
|
-
"name": "
|
|
114832
|
+
"name": "verified_addresses_stddev_samp_order_by",
|
|
114762
114833
|
"ofType": null
|
|
114763
114834
|
},
|
|
114764
114835
|
"defaultValue": null,
|
|
@@ -114766,11 +114837,11 @@
|
|
|
114766
114837
|
"deprecationReason": null
|
|
114767
114838
|
},
|
|
114768
114839
|
{
|
|
114769
|
-
"name": "
|
|
114840
|
+
"name": "sum",
|
|
114770
114841
|
"description": null,
|
|
114771
114842
|
"type": {
|
|
114772
114843
|
"kind": "INPUT_OBJECT",
|
|
114773
|
-
"name": "
|
|
114844
|
+
"name": "verified_addresses_sum_order_by",
|
|
114774
114845
|
"ofType": null
|
|
114775
114846
|
},
|
|
114776
114847
|
"defaultValue": null,
|
|
@@ -114778,11 +114849,11 @@
|
|
|
114778
114849
|
"deprecationReason": null
|
|
114779
114850
|
},
|
|
114780
114851
|
{
|
|
114781
|
-
"name": "
|
|
114852
|
+
"name": "var_pop",
|
|
114782
114853
|
"description": null,
|
|
114783
114854
|
"type": {
|
|
114784
114855
|
"kind": "INPUT_OBJECT",
|
|
114785
|
-
"name": "
|
|
114856
|
+
"name": "verified_addresses_var_pop_order_by",
|
|
114786
114857
|
"ofType": null
|
|
114787
114858
|
},
|
|
114788
114859
|
"defaultValue": null,
|
|
@@ -114790,11 +114861,11 @@
|
|
|
114790
114861
|
"deprecationReason": null
|
|
114791
114862
|
},
|
|
114792
114863
|
{
|
|
114793
|
-
"name": "
|
|
114864
|
+
"name": "var_samp",
|
|
114794
114865
|
"description": null,
|
|
114795
114866
|
"type": {
|
|
114796
114867
|
"kind": "INPUT_OBJECT",
|
|
114797
|
-
"name": "
|
|
114868
|
+
"name": "verified_addresses_var_samp_order_by",
|
|
114798
114869
|
"ofType": null
|
|
114799
114870
|
},
|
|
114800
114871
|
"defaultValue": null,
|
|
@@ -114802,43 +114873,271 @@
|
|
|
114802
114873
|
"deprecationReason": null
|
|
114803
114874
|
},
|
|
114804
114875
|
{
|
|
114805
|
-
"name": "
|
|
114876
|
+
"name": "variance",
|
|
114806
114877
|
"description": null,
|
|
114807
114878
|
"type": {
|
|
114808
114879
|
"kind": "INPUT_OBJECT",
|
|
114809
|
-
"name": "
|
|
114880
|
+
"name": "verified_addresses_variance_order_by",
|
|
114810
114881
|
"ofType": null
|
|
114811
114882
|
},
|
|
114812
114883
|
"defaultValue": null,
|
|
114813
114884
|
"isDeprecated": false,
|
|
114814
114885
|
"deprecationReason": null
|
|
114815
|
-
}
|
|
114886
|
+
}
|
|
114887
|
+
],
|
|
114888
|
+
"interfaces": null,
|
|
114889
|
+
"enumValues": null,
|
|
114890
|
+
"possibleTypes": null
|
|
114891
|
+
},
|
|
114892
|
+
{
|
|
114893
|
+
"kind": "INPUT_OBJECT",
|
|
114894
|
+
"name": "verified_addresses_append_input",
|
|
114895
|
+
"description": "append existing jsonb value of filtered columns with new jsonb value",
|
|
114896
|
+
"fields": null,
|
|
114897
|
+
"inputFields": [
|
|
114816
114898
|
{
|
|
114817
|
-
"name": "
|
|
114899
|
+
"name": "verification_data",
|
|
114818
114900
|
"description": null,
|
|
114819
114901
|
"type": {
|
|
114820
|
-
"kind": "
|
|
114821
|
-
"name": "
|
|
114902
|
+
"kind": "SCALAR",
|
|
114903
|
+
"name": "jsonb",
|
|
114822
114904
|
"ofType": null
|
|
114823
114905
|
},
|
|
114824
114906
|
"defaultValue": null,
|
|
114825
114907
|
"isDeprecated": false,
|
|
114826
114908
|
"deprecationReason": null
|
|
114827
|
-
}
|
|
114909
|
+
}
|
|
114910
|
+
],
|
|
114911
|
+
"interfaces": null,
|
|
114912
|
+
"enumValues": null,
|
|
114913
|
+
"possibleTypes": null
|
|
114914
|
+
},
|
|
114915
|
+
{
|
|
114916
|
+
"kind": "OBJECT",
|
|
114917
|
+
"name": "verified_addresses_avg_fields",
|
|
114918
|
+
"description": "aggregate avg on columns",
|
|
114919
|
+
"fields": [
|
|
114828
114920
|
{
|
|
114829
114921
|
"name": "latitude",
|
|
114830
114922
|
"description": null,
|
|
114923
|
+
"args": [],
|
|
114831
114924
|
"type": {
|
|
114832
|
-
"kind": "
|
|
114833
|
-
"name": "
|
|
114925
|
+
"kind": "SCALAR",
|
|
114926
|
+
"name": "Float",
|
|
114834
114927
|
"ofType": null
|
|
114835
114928
|
},
|
|
114836
|
-
"defaultValue": null,
|
|
114837
114929
|
"isDeprecated": false,
|
|
114838
114930
|
"deprecationReason": null
|
|
114839
114931
|
},
|
|
114840
114932
|
{
|
|
114841
|
-
"name": "
|
|
114933
|
+
"name": "longitude",
|
|
114934
|
+
"description": null,
|
|
114935
|
+
"args": [],
|
|
114936
|
+
"type": {
|
|
114937
|
+
"kind": "SCALAR",
|
|
114938
|
+
"name": "Float",
|
|
114939
|
+
"ofType": null
|
|
114940
|
+
},
|
|
114941
|
+
"isDeprecated": false,
|
|
114942
|
+
"deprecationReason": null
|
|
114943
|
+
}
|
|
114944
|
+
],
|
|
114945
|
+
"inputFields": null,
|
|
114946
|
+
"interfaces": [],
|
|
114947
|
+
"enumValues": null,
|
|
114948
|
+
"possibleTypes": null
|
|
114949
|
+
},
|
|
114950
|
+
{
|
|
114951
|
+
"kind": "INPUT_OBJECT",
|
|
114952
|
+
"name": "verified_addresses_avg_order_by",
|
|
114953
|
+
"description": "order by avg() on columns of table \"verified_addresses\"",
|
|
114954
|
+
"fields": null,
|
|
114955
|
+
"inputFields": [
|
|
114956
|
+
{
|
|
114957
|
+
"name": "latitude",
|
|
114958
|
+
"description": null,
|
|
114959
|
+
"type": {
|
|
114960
|
+
"kind": "ENUM",
|
|
114961
|
+
"name": "order_by",
|
|
114962
|
+
"ofType": null
|
|
114963
|
+
},
|
|
114964
|
+
"defaultValue": null,
|
|
114965
|
+
"isDeprecated": false,
|
|
114966
|
+
"deprecationReason": null
|
|
114967
|
+
},
|
|
114968
|
+
{
|
|
114969
|
+
"name": "longitude",
|
|
114970
|
+
"description": null,
|
|
114971
|
+
"type": {
|
|
114972
|
+
"kind": "ENUM",
|
|
114973
|
+
"name": "order_by",
|
|
114974
|
+
"ofType": null
|
|
114975
|
+
},
|
|
114976
|
+
"defaultValue": null,
|
|
114977
|
+
"isDeprecated": false,
|
|
114978
|
+
"deprecationReason": null
|
|
114979
|
+
}
|
|
114980
|
+
],
|
|
114981
|
+
"interfaces": null,
|
|
114982
|
+
"enumValues": null,
|
|
114983
|
+
"possibleTypes": null
|
|
114984
|
+
},
|
|
114985
|
+
{
|
|
114986
|
+
"kind": "INPUT_OBJECT",
|
|
114987
|
+
"name": "verified_addresses_bool_exp",
|
|
114988
|
+
"description": "Boolean expression to filter rows from the table \"verified_addresses\". All fields are combined with a logical 'AND'.",
|
|
114989
|
+
"fields": null,
|
|
114990
|
+
"inputFields": [
|
|
114991
|
+
{
|
|
114992
|
+
"name": "_and",
|
|
114993
|
+
"description": null,
|
|
114994
|
+
"type": {
|
|
114995
|
+
"kind": "LIST",
|
|
114996
|
+
"name": null,
|
|
114997
|
+
"ofType": {
|
|
114998
|
+
"kind": "NON_NULL",
|
|
114999
|
+
"name": null,
|
|
115000
|
+
"ofType": {
|
|
115001
|
+
"kind": "INPUT_OBJECT",
|
|
115002
|
+
"name": "verified_addresses_bool_exp",
|
|
115003
|
+
"ofType": null
|
|
115004
|
+
}
|
|
115005
|
+
}
|
|
115006
|
+
},
|
|
115007
|
+
"defaultValue": null,
|
|
115008
|
+
"isDeprecated": false,
|
|
115009
|
+
"deprecationReason": null
|
|
115010
|
+
},
|
|
115011
|
+
{
|
|
115012
|
+
"name": "_not",
|
|
115013
|
+
"description": null,
|
|
115014
|
+
"type": {
|
|
115015
|
+
"kind": "INPUT_OBJECT",
|
|
115016
|
+
"name": "verified_addresses_bool_exp",
|
|
115017
|
+
"ofType": null
|
|
115018
|
+
},
|
|
115019
|
+
"defaultValue": null,
|
|
115020
|
+
"isDeprecated": false,
|
|
115021
|
+
"deprecationReason": null
|
|
115022
|
+
},
|
|
115023
|
+
{
|
|
115024
|
+
"name": "_or",
|
|
115025
|
+
"description": null,
|
|
115026
|
+
"type": {
|
|
115027
|
+
"kind": "LIST",
|
|
115028
|
+
"name": null,
|
|
115029
|
+
"ofType": {
|
|
115030
|
+
"kind": "NON_NULL",
|
|
115031
|
+
"name": null,
|
|
115032
|
+
"ofType": {
|
|
115033
|
+
"kind": "INPUT_OBJECT",
|
|
115034
|
+
"name": "verified_addresses_bool_exp",
|
|
115035
|
+
"ofType": null
|
|
115036
|
+
}
|
|
115037
|
+
}
|
|
115038
|
+
},
|
|
115039
|
+
"defaultValue": null,
|
|
115040
|
+
"isDeprecated": false,
|
|
115041
|
+
"deprecationReason": null
|
|
115042
|
+
},
|
|
115043
|
+
{
|
|
115044
|
+
"name": "address_verification_run_results",
|
|
115045
|
+
"description": null,
|
|
115046
|
+
"type": {
|
|
115047
|
+
"kind": "INPUT_OBJECT",
|
|
115048
|
+
"name": "address_verification_run_results_bool_exp",
|
|
115049
|
+
"ofType": null
|
|
115050
|
+
},
|
|
115051
|
+
"defaultValue": null,
|
|
115052
|
+
"isDeprecated": false,
|
|
115053
|
+
"deprecationReason": null
|
|
115054
|
+
},
|
|
115055
|
+
{
|
|
115056
|
+
"name": "address_verification_run_results_aggregate",
|
|
115057
|
+
"description": null,
|
|
115058
|
+
"type": {
|
|
115059
|
+
"kind": "INPUT_OBJECT",
|
|
115060
|
+
"name": "address_verification_run_results_aggregate_bool_exp",
|
|
115061
|
+
"ofType": null
|
|
115062
|
+
},
|
|
115063
|
+
"defaultValue": null,
|
|
115064
|
+
"isDeprecated": false,
|
|
115065
|
+
"deprecationReason": null
|
|
115066
|
+
},
|
|
115067
|
+
{
|
|
115068
|
+
"name": "administrative_area_level_1",
|
|
115069
|
+
"description": null,
|
|
115070
|
+
"type": {
|
|
115071
|
+
"kind": "INPUT_OBJECT",
|
|
115072
|
+
"name": "String_comparison_exp",
|
|
115073
|
+
"ofType": null
|
|
115074
|
+
},
|
|
115075
|
+
"defaultValue": null,
|
|
115076
|
+
"isDeprecated": false,
|
|
115077
|
+
"deprecationReason": null
|
|
115078
|
+
},
|
|
115079
|
+
{
|
|
115080
|
+
"name": "country",
|
|
115081
|
+
"description": null,
|
|
115082
|
+
"type": {
|
|
115083
|
+
"kind": "INPUT_OBJECT",
|
|
115084
|
+
"name": "String_comparison_exp",
|
|
115085
|
+
"ofType": null
|
|
115086
|
+
},
|
|
115087
|
+
"defaultValue": null,
|
|
115088
|
+
"isDeprecated": false,
|
|
115089
|
+
"deprecationReason": null
|
|
115090
|
+
},
|
|
115091
|
+
{
|
|
115092
|
+
"name": "created_at",
|
|
115093
|
+
"description": null,
|
|
115094
|
+
"type": {
|
|
115095
|
+
"kind": "INPUT_OBJECT",
|
|
115096
|
+
"name": "timestamp_comparison_exp",
|
|
115097
|
+
"ofType": null
|
|
115098
|
+
},
|
|
115099
|
+
"defaultValue": null,
|
|
115100
|
+
"isDeprecated": false,
|
|
115101
|
+
"deprecationReason": null
|
|
115102
|
+
},
|
|
115103
|
+
{
|
|
115104
|
+
"name": "formatted_address",
|
|
115105
|
+
"description": null,
|
|
115106
|
+
"type": {
|
|
115107
|
+
"kind": "INPUT_OBJECT",
|
|
115108
|
+
"name": "String_comparison_exp",
|
|
115109
|
+
"ofType": null
|
|
115110
|
+
},
|
|
115111
|
+
"defaultValue": null,
|
|
115112
|
+
"isDeprecated": false,
|
|
115113
|
+
"deprecationReason": null
|
|
115114
|
+
},
|
|
115115
|
+
{
|
|
115116
|
+
"name": "id",
|
|
115117
|
+
"description": null,
|
|
115118
|
+
"type": {
|
|
115119
|
+
"kind": "INPUT_OBJECT",
|
|
115120
|
+
"name": "uuid_comparison_exp",
|
|
115121
|
+
"ofType": null
|
|
115122
|
+
},
|
|
115123
|
+
"defaultValue": null,
|
|
115124
|
+
"isDeprecated": false,
|
|
115125
|
+
"deprecationReason": null
|
|
115126
|
+
},
|
|
115127
|
+
{
|
|
115128
|
+
"name": "latitude",
|
|
115129
|
+
"description": null,
|
|
115130
|
+
"type": {
|
|
115131
|
+
"kind": "INPUT_OBJECT",
|
|
115132
|
+
"name": "numeric_comparison_exp",
|
|
115133
|
+
"ofType": null
|
|
115134
|
+
},
|
|
115135
|
+
"defaultValue": null,
|
|
115136
|
+
"isDeprecated": false,
|
|
115137
|
+
"deprecationReason": null
|
|
115138
|
+
},
|
|
115139
|
+
{
|
|
115140
|
+
"name": "locality",
|
|
114842
115141
|
"description": null,
|
|
114843
115142
|
"type": {
|
|
114844
115143
|
"kind": "INPUT_OBJECT",
|
|
@@ -115468,100 +115767,279 @@
|
|
|
115468
115767
|
"possibleTypes": null
|
|
115469
115768
|
},
|
|
115470
115769
|
{
|
|
115471
|
-
"kind": "
|
|
115472
|
-
"name": "
|
|
115473
|
-
"description": "
|
|
115474
|
-
"fields":
|
|
115770
|
+
"kind": "INPUT_OBJECT",
|
|
115771
|
+
"name": "verified_addresses_max_order_by",
|
|
115772
|
+
"description": "order by max() on columns of table \"verified_addresses\"",
|
|
115773
|
+
"fields": null,
|
|
115774
|
+
"inputFields": [
|
|
115475
115775
|
{
|
|
115476
115776
|
"name": "administrative_area_level_1",
|
|
115477
115777
|
"description": null,
|
|
115478
|
-
"args": [],
|
|
115479
115778
|
"type": {
|
|
115480
|
-
"kind": "
|
|
115481
|
-
"name": "
|
|
115779
|
+
"kind": "ENUM",
|
|
115780
|
+
"name": "order_by",
|
|
115482
115781
|
"ofType": null
|
|
115483
115782
|
},
|
|
115783
|
+
"defaultValue": null,
|
|
115484
115784
|
"isDeprecated": false,
|
|
115485
115785
|
"deprecationReason": null
|
|
115486
115786
|
},
|
|
115487
115787
|
{
|
|
115488
115788
|
"name": "country",
|
|
115489
115789
|
"description": null,
|
|
115490
|
-
"args": [],
|
|
115491
115790
|
"type": {
|
|
115492
|
-
"kind": "
|
|
115493
|
-
"name": "
|
|
115791
|
+
"kind": "ENUM",
|
|
115792
|
+
"name": "order_by",
|
|
115494
115793
|
"ofType": null
|
|
115495
115794
|
},
|
|
115795
|
+
"defaultValue": null,
|
|
115496
115796
|
"isDeprecated": false,
|
|
115497
115797
|
"deprecationReason": null
|
|
115498
115798
|
},
|
|
115499
115799
|
{
|
|
115500
115800
|
"name": "created_at",
|
|
115501
115801
|
"description": null,
|
|
115502
|
-
"args": [],
|
|
115503
115802
|
"type": {
|
|
115504
|
-
"kind": "
|
|
115505
|
-
"name": "
|
|
115803
|
+
"kind": "ENUM",
|
|
115804
|
+
"name": "order_by",
|
|
115506
115805
|
"ofType": null
|
|
115507
115806
|
},
|
|
115807
|
+
"defaultValue": null,
|
|
115508
115808
|
"isDeprecated": false,
|
|
115509
115809
|
"deprecationReason": null
|
|
115510
115810
|
},
|
|
115511
115811
|
{
|
|
115512
115812
|
"name": "formatted_address",
|
|
115513
115813
|
"description": null,
|
|
115514
|
-
"args": [],
|
|
115515
115814
|
"type": {
|
|
115516
|
-
"kind": "
|
|
115517
|
-
"name": "
|
|
115815
|
+
"kind": "ENUM",
|
|
115816
|
+
"name": "order_by",
|
|
115518
115817
|
"ofType": null
|
|
115519
115818
|
},
|
|
115819
|
+
"defaultValue": null,
|
|
115520
115820
|
"isDeprecated": false,
|
|
115521
115821
|
"deprecationReason": null
|
|
115522
115822
|
},
|
|
115523
115823
|
{
|
|
115524
115824
|
"name": "id",
|
|
115525
115825
|
"description": null,
|
|
115526
|
-
"args": [],
|
|
115527
115826
|
"type": {
|
|
115528
|
-
"kind": "
|
|
115529
|
-
"name": "
|
|
115827
|
+
"kind": "ENUM",
|
|
115828
|
+
"name": "order_by",
|
|
115530
115829
|
"ofType": null
|
|
115531
115830
|
},
|
|
115831
|
+
"defaultValue": null,
|
|
115532
115832
|
"isDeprecated": false,
|
|
115533
115833
|
"deprecationReason": null
|
|
115534
115834
|
},
|
|
115535
115835
|
{
|
|
115536
115836
|
"name": "latitude",
|
|
115537
115837
|
"description": null,
|
|
115538
|
-
"args": [],
|
|
115539
115838
|
"type": {
|
|
115540
|
-
"kind": "
|
|
115541
|
-
"name": "
|
|
115839
|
+
"kind": "ENUM",
|
|
115840
|
+
"name": "order_by",
|
|
115542
115841
|
"ofType": null
|
|
115543
115842
|
},
|
|
115843
|
+
"defaultValue": null,
|
|
115544
115844
|
"isDeprecated": false,
|
|
115545
115845
|
"deprecationReason": null
|
|
115546
115846
|
},
|
|
115547
115847
|
{
|
|
115548
115848
|
"name": "locality",
|
|
115549
115849
|
"description": null,
|
|
115550
|
-
"args": [],
|
|
115551
115850
|
"type": {
|
|
115552
|
-
"kind": "
|
|
115553
|
-
"name": "
|
|
115851
|
+
"kind": "ENUM",
|
|
115852
|
+
"name": "order_by",
|
|
115554
115853
|
"ofType": null
|
|
115555
115854
|
},
|
|
115855
|
+
"defaultValue": null,
|
|
115556
115856
|
"isDeprecated": false,
|
|
115557
115857
|
"deprecationReason": null
|
|
115558
115858
|
},
|
|
115559
115859
|
{
|
|
115560
115860
|
"name": "longitude",
|
|
115561
115861
|
"description": null,
|
|
115562
|
-
"args": [],
|
|
115563
115862
|
"type": {
|
|
115564
|
-
"kind": "
|
|
115863
|
+
"kind": "ENUM",
|
|
115864
|
+
"name": "order_by",
|
|
115865
|
+
"ofType": null
|
|
115866
|
+
},
|
|
115867
|
+
"defaultValue": null,
|
|
115868
|
+
"isDeprecated": false,
|
|
115869
|
+
"deprecationReason": null
|
|
115870
|
+
},
|
|
115871
|
+
{
|
|
115872
|
+
"name": "pluscode",
|
|
115873
|
+
"description": null,
|
|
115874
|
+
"type": {
|
|
115875
|
+
"kind": "ENUM",
|
|
115876
|
+
"name": "order_by",
|
|
115877
|
+
"ofType": null
|
|
115878
|
+
},
|
|
115879
|
+
"defaultValue": null,
|
|
115880
|
+
"isDeprecated": false,
|
|
115881
|
+
"deprecationReason": null
|
|
115882
|
+
},
|
|
115883
|
+
{
|
|
115884
|
+
"name": "postal_code",
|
|
115885
|
+
"description": null,
|
|
115886
|
+
"type": {
|
|
115887
|
+
"kind": "ENUM",
|
|
115888
|
+
"name": "order_by",
|
|
115889
|
+
"ofType": null
|
|
115890
|
+
},
|
|
115891
|
+
"defaultValue": null,
|
|
115892
|
+
"isDeprecated": false,
|
|
115893
|
+
"deprecationReason": null
|
|
115894
|
+
},
|
|
115895
|
+
{
|
|
115896
|
+
"name": "route",
|
|
115897
|
+
"description": null,
|
|
115898
|
+
"type": {
|
|
115899
|
+
"kind": "ENUM",
|
|
115900
|
+
"name": "order_by",
|
|
115901
|
+
"ofType": null
|
|
115902
|
+
},
|
|
115903
|
+
"defaultValue": null,
|
|
115904
|
+
"isDeprecated": false,
|
|
115905
|
+
"deprecationReason": null
|
|
115906
|
+
},
|
|
115907
|
+
{
|
|
115908
|
+
"name": "street_number",
|
|
115909
|
+
"description": null,
|
|
115910
|
+
"type": {
|
|
115911
|
+
"kind": "ENUM",
|
|
115912
|
+
"name": "order_by",
|
|
115913
|
+
"ofType": null
|
|
115914
|
+
},
|
|
115915
|
+
"defaultValue": null,
|
|
115916
|
+
"isDeprecated": false,
|
|
115917
|
+
"deprecationReason": null
|
|
115918
|
+
},
|
|
115919
|
+
{
|
|
115920
|
+
"name": "subpremise",
|
|
115921
|
+
"description": null,
|
|
115922
|
+
"type": {
|
|
115923
|
+
"kind": "ENUM",
|
|
115924
|
+
"name": "order_by",
|
|
115925
|
+
"ofType": null
|
|
115926
|
+
},
|
|
115927
|
+
"defaultValue": null,
|
|
115928
|
+
"isDeprecated": false,
|
|
115929
|
+
"deprecationReason": null
|
|
115930
|
+
},
|
|
115931
|
+
{
|
|
115932
|
+
"name": "updated_at",
|
|
115933
|
+
"description": null,
|
|
115934
|
+
"type": {
|
|
115935
|
+
"kind": "ENUM",
|
|
115936
|
+
"name": "order_by",
|
|
115937
|
+
"ofType": null
|
|
115938
|
+
},
|
|
115939
|
+
"defaultValue": null,
|
|
115940
|
+
"isDeprecated": false,
|
|
115941
|
+
"deprecationReason": null
|
|
115942
|
+
}
|
|
115943
|
+
],
|
|
115944
|
+
"interfaces": null,
|
|
115945
|
+
"enumValues": null,
|
|
115946
|
+
"possibleTypes": null
|
|
115947
|
+
},
|
|
115948
|
+
{
|
|
115949
|
+
"kind": "OBJECT",
|
|
115950
|
+
"name": "verified_addresses_min_fields",
|
|
115951
|
+
"description": "aggregate min on columns",
|
|
115952
|
+
"fields": [
|
|
115953
|
+
{
|
|
115954
|
+
"name": "administrative_area_level_1",
|
|
115955
|
+
"description": null,
|
|
115956
|
+
"args": [],
|
|
115957
|
+
"type": {
|
|
115958
|
+
"kind": "SCALAR",
|
|
115959
|
+
"name": "String",
|
|
115960
|
+
"ofType": null
|
|
115961
|
+
},
|
|
115962
|
+
"isDeprecated": false,
|
|
115963
|
+
"deprecationReason": null
|
|
115964
|
+
},
|
|
115965
|
+
{
|
|
115966
|
+
"name": "country",
|
|
115967
|
+
"description": null,
|
|
115968
|
+
"args": [],
|
|
115969
|
+
"type": {
|
|
115970
|
+
"kind": "SCALAR",
|
|
115971
|
+
"name": "String",
|
|
115972
|
+
"ofType": null
|
|
115973
|
+
},
|
|
115974
|
+
"isDeprecated": false,
|
|
115975
|
+
"deprecationReason": null
|
|
115976
|
+
},
|
|
115977
|
+
{
|
|
115978
|
+
"name": "created_at",
|
|
115979
|
+
"description": null,
|
|
115980
|
+
"args": [],
|
|
115981
|
+
"type": {
|
|
115982
|
+
"kind": "SCALAR",
|
|
115983
|
+
"name": "timestamp",
|
|
115984
|
+
"ofType": null
|
|
115985
|
+
},
|
|
115986
|
+
"isDeprecated": false,
|
|
115987
|
+
"deprecationReason": null
|
|
115988
|
+
},
|
|
115989
|
+
{
|
|
115990
|
+
"name": "formatted_address",
|
|
115991
|
+
"description": null,
|
|
115992
|
+
"args": [],
|
|
115993
|
+
"type": {
|
|
115994
|
+
"kind": "SCALAR",
|
|
115995
|
+
"name": "String",
|
|
115996
|
+
"ofType": null
|
|
115997
|
+
},
|
|
115998
|
+
"isDeprecated": false,
|
|
115999
|
+
"deprecationReason": null
|
|
116000
|
+
},
|
|
116001
|
+
{
|
|
116002
|
+
"name": "id",
|
|
116003
|
+
"description": null,
|
|
116004
|
+
"args": [],
|
|
116005
|
+
"type": {
|
|
116006
|
+
"kind": "SCALAR",
|
|
116007
|
+
"name": "uuid",
|
|
116008
|
+
"ofType": null
|
|
116009
|
+
},
|
|
116010
|
+
"isDeprecated": false,
|
|
116011
|
+
"deprecationReason": null
|
|
116012
|
+
},
|
|
116013
|
+
{
|
|
116014
|
+
"name": "latitude",
|
|
116015
|
+
"description": null,
|
|
116016
|
+
"args": [],
|
|
116017
|
+
"type": {
|
|
116018
|
+
"kind": "SCALAR",
|
|
116019
|
+
"name": "numeric",
|
|
116020
|
+
"ofType": null
|
|
116021
|
+
},
|
|
116022
|
+
"isDeprecated": false,
|
|
116023
|
+
"deprecationReason": null
|
|
116024
|
+
},
|
|
116025
|
+
{
|
|
116026
|
+
"name": "locality",
|
|
116027
|
+
"description": null,
|
|
116028
|
+
"args": [],
|
|
116029
|
+
"type": {
|
|
116030
|
+
"kind": "SCALAR",
|
|
116031
|
+
"name": "String",
|
|
116032
|
+
"ofType": null
|
|
116033
|
+
},
|
|
116034
|
+
"isDeprecated": false,
|
|
116035
|
+
"deprecationReason": null
|
|
116036
|
+
},
|
|
116037
|
+
{
|
|
116038
|
+
"name": "longitude",
|
|
116039
|
+
"description": null,
|
|
116040
|
+
"args": [],
|
|
116041
|
+
"type": {
|
|
116042
|
+
"kind": "SCALAR",
|
|
115565
116043
|
"name": "numeric",
|
|
115566
116044
|
"ofType": null
|
|
115567
116045
|
},
|
|
@@ -115607,42 +116085,221 @@
|
|
|
115607
116085
|
{
|
|
115608
116086
|
"name": "street_number",
|
|
115609
116087
|
"description": null,
|
|
115610
|
-
"args": [],
|
|
116088
|
+
"args": [],
|
|
116089
|
+
"type": {
|
|
116090
|
+
"kind": "SCALAR",
|
|
116091
|
+
"name": "String",
|
|
116092
|
+
"ofType": null
|
|
116093
|
+
},
|
|
116094
|
+
"isDeprecated": false,
|
|
116095
|
+
"deprecationReason": null
|
|
116096
|
+
},
|
|
116097
|
+
{
|
|
116098
|
+
"name": "subpremise",
|
|
116099
|
+
"description": null,
|
|
116100
|
+
"args": [],
|
|
116101
|
+
"type": {
|
|
116102
|
+
"kind": "SCALAR",
|
|
116103
|
+
"name": "String",
|
|
116104
|
+
"ofType": null
|
|
116105
|
+
},
|
|
116106
|
+
"isDeprecated": false,
|
|
116107
|
+
"deprecationReason": null
|
|
116108
|
+
},
|
|
116109
|
+
{
|
|
116110
|
+
"name": "updated_at",
|
|
116111
|
+
"description": null,
|
|
116112
|
+
"args": [],
|
|
116113
|
+
"type": {
|
|
116114
|
+
"kind": "SCALAR",
|
|
116115
|
+
"name": "timestamptz",
|
|
116116
|
+
"ofType": null
|
|
116117
|
+
},
|
|
116118
|
+
"isDeprecated": false,
|
|
116119
|
+
"deprecationReason": null
|
|
116120
|
+
}
|
|
116121
|
+
],
|
|
116122
|
+
"inputFields": null,
|
|
116123
|
+
"interfaces": [],
|
|
116124
|
+
"enumValues": null,
|
|
116125
|
+
"possibleTypes": null
|
|
116126
|
+
},
|
|
116127
|
+
{
|
|
116128
|
+
"kind": "INPUT_OBJECT",
|
|
116129
|
+
"name": "verified_addresses_min_order_by",
|
|
116130
|
+
"description": "order by min() on columns of table \"verified_addresses\"",
|
|
116131
|
+
"fields": null,
|
|
116132
|
+
"inputFields": [
|
|
116133
|
+
{
|
|
116134
|
+
"name": "administrative_area_level_1",
|
|
116135
|
+
"description": null,
|
|
116136
|
+
"type": {
|
|
116137
|
+
"kind": "ENUM",
|
|
116138
|
+
"name": "order_by",
|
|
116139
|
+
"ofType": null
|
|
116140
|
+
},
|
|
116141
|
+
"defaultValue": null,
|
|
116142
|
+
"isDeprecated": false,
|
|
116143
|
+
"deprecationReason": null
|
|
116144
|
+
},
|
|
116145
|
+
{
|
|
116146
|
+
"name": "country",
|
|
116147
|
+
"description": null,
|
|
116148
|
+
"type": {
|
|
116149
|
+
"kind": "ENUM",
|
|
116150
|
+
"name": "order_by",
|
|
116151
|
+
"ofType": null
|
|
116152
|
+
},
|
|
116153
|
+
"defaultValue": null,
|
|
116154
|
+
"isDeprecated": false,
|
|
116155
|
+
"deprecationReason": null
|
|
116156
|
+
},
|
|
116157
|
+
{
|
|
116158
|
+
"name": "created_at",
|
|
116159
|
+
"description": null,
|
|
116160
|
+
"type": {
|
|
116161
|
+
"kind": "ENUM",
|
|
116162
|
+
"name": "order_by",
|
|
116163
|
+
"ofType": null
|
|
116164
|
+
},
|
|
116165
|
+
"defaultValue": null,
|
|
116166
|
+
"isDeprecated": false,
|
|
116167
|
+
"deprecationReason": null
|
|
116168
|
+
},
|
|
116169
|
+
{
|
|
116170
|
+
"name": "formatted_address",
|
|
116171
|
+
"description": null,
|
|
116172
|
+
"type": {
|
|
116173
|
+
"kind": "ENUM",
|
|
116174
|
+
"name": "order_by",
|
|
116175
|
+
"ofType": null
|
|
116176
|
+
},
|
|
116177
|
+
"defaultValue": null,
|
|
116178
|
+
"isDeprecated": false,
|
|
116179
|
+
"deprecationReason": null
|
|
116180
|
+
},
|
|
116181
|
+
{
|
|
116182
|
+
"name": "id",
|
|
116183
|
+
"description": null,
|
|
116184
|
+
"type": {
|
|
116185
|
+
"kind": "ENUM",
|
|
116186
|
+
"name": "order_by",
|
|
116187
|
+
"ofType": null
|
|
116188
|
+
},
|
|
116189
|
+
"defaultValue": null,
|
|
116190
|
+
"isDeprecated": false,
|
|
116191
|
+
"deprecationReason": null
|
|
116192
|
+
},
|
|
116193
|
+
{
|
|
116194
|
+
"name": "latitude",
|
|
116195
|
+
"description": null,
|
|
116196
|
+
"type": {
|
|
116197
|
+
"kind": "ENUM",
|
|
116198
|
+
"name": "order_by",
|
|
116199
|
+
"ofType": null
|
|
116200
|
+
},
|
|
116201
|
+
"defaultValue": null,
|
|
116202
|
+
"isDeprecated": false,
|
|
116203
|
+
"deprecationReason": null
|
|
116204
|
+
},
|
|
116205
|
+
{
|
|
116206
|
+
"name": "locality",
|
|
116207
|
+
"description": null,
|
|
116208
|
+
"type": {
|
|
116209
|
+
"kind": "ENUM",
|
|
116210
|
+
"name": "order_by",
|
|
116211
|
+
"ofType": null
|
|
116212
|
+
},
|
|
116213
|
+
"defaultValue": null,
|
|
116214
|
+
"isDeprecated": false,
|
|
116215
|
+
"deprecationReason": null
|
|
116216
|
+
},
|
|
116217
|
+
{
|
|
116218
|
+
"name": "longitude",
|
|
116219
|
+
"description": null,
|
|
116220
|
+
"type": {
|
|
116221
|
+
"kind": "ENUM",
|
|
116222
|
+
"name": "order_by",
|
|
116223
|
+
"ofType": null
|
|
116224
|
+
},
|
|
116225
|
+
"defaultValue": null,
|
|
116226
|
+
"isDeprecated": false,
|
|
116227
|
+
"deprecationReason": null
|
|
116228
|
+
},
|
|
116229
|
+
{
|
|
116230
|
+
"name": "pluscode",
|
|
116231
|
+
"description": null,
|
|
116232
|
+
"type": {
|
|
116233
|
+
"kind": "ENUM",
|
|
116234
|
+
"name": "order_by",
|
|
116235
|
+
"ofType": null
|
|
116236
|
+
},
|
|
116237
|
+
"defaultValue": null,
|
|
116238
|
+
"isDeprecated": false,
|
|
116239
|
+
"deprecationReason": null
|
|
116240
|
+
},
|
|
116241
|
+
{
|
|
116242
|
+
"name": "postal_code",
|
|
116243
|
+
"description": null,
|
|
116244
|
+
"type": {
|
|
116245
|
+
"kind": "ENUM",
|
|
116246
|
+
"name": "order_by",
|
|
116247
|
+
"ofType": null
|
|
116248
|
+
},
|
|
116249
|
+
"defaultValue": null,
|
|
116250
|
+
"isDeprecated": false,
|
|
116251
|
+
"deprecationReason": null
|
|
116252
|
+
},
|
|
116253
|
+
{
|
|
116254
|
+
"name": "route",
|
|
116255
|
+
"description": null,
|
|
116256
|
+
"type": {
|
|
116257
|
+
"kind": "ENUM",
|
|
116258
|
+
"name": "order_by",
|
|
116259
|
+
"ofType": null
|
|
116260
|
+
},
|
|
116261
|
+
"defaultValue": null,
|
|
116262
|
+
"isDeprecated": false,
|
|
116263
|
+
"deprecationReason": null
|
|
116264
|
+
},
|
|
116265
|
+
{
|
|
116266
|
+
"name": "street_number",
|
|
116267
|
+
"description": null,
|
|
115611
116268
|
"type": {
|
|
115612
|
-
"kind": "
|
|
115613
|
-
"name": "
|
|
116269
|
+
"kind": "ENUM",
|
|
116270
|
+
"name": "order_by",
|
|
115614
116271
|
"ofType": null
|
|
115615
116272
|
},
|
|
116273
|
+
"defaultValue": null,
|
|
115616
116274
|
"isDeprecated": false,
|
|
115617
116275
|
"deprecationReason": null
|
|
115618
116276
|
},
|
|
115619
116277
|
{
|
|
115620
116278
|
"name": "subpremise",
|
|
115621
116279
|
"description": null,
|
|
115622
|
-
"args": [],
|
|
115623
116280
|
"type": {
|
|
115624
|
-
"kind": "
|
|
115625
|
-
"name": "
|
|
116281
|
+
"kind": "ENUM",
|
|
116282
|
+
"name": "order_by",
|
|
115626
116283
|
"ofType": null
|
|
115627
116284
|
},
|
|
116285
|
+
"defaultValue": null,
|
|
115628
116286
|
"isDeprecated": false,
|
|
115629
116287
|
"deprecationReason": null
|
|
115630
116288
|
},
|
|
115631
116289
|
{
|
|
115632
116290
|
"name": "updated_at",
|
|
115633
116291
|
"description": null,
|
|
115634
|
-
"args": [],
|
|
115635
116292
|
"type": {
|
|
115636
|
-
"kind": "
|
|
115637
|
-
"name": "
|
|
116293
|
+
"kind": "ENUM",
|
|
116294
|
+
"name": "order_by",
|
|
115638
116295
|
"ofType": null
|
|
115639
116296
|
},
|
|
116297
|
+
"defaultValue": null,
|
|
115640
116298
|
"isDeprecated": false,
|
|
115641
116299
|
"deprecationReason": null
|
|
115642
116300
|
}
|
|
115643
116301
|
],
|
|
115644
|
-
"
|
|
115645
|
-
"interfaces": [],
|
|
116302
|
+
"interfaces": null,
|
|
115646
116303
|
"enumValues": null,
|
|
115647
116304
|
"possibleTypes": null
|
|
115648
116305
|
},
|
|
@@ -116379,6 +117036,41 @@
|
|
|
116379
117036
|
"enumValues": null,
|
|
116380
117037
|
"possibleTypes": null
|
|
116381
117038
|
},
|
|
117039
|
+
{
|
|
117040
|
+
"kind": "INPUT_OBJECT",
|
|
117041
|
+
"name": "verified_addresses_stddev_order_by",
|
|
117042
|
+
"description": "order by stddev() on columns of table \"verified_addresses\"",
|
|
117043
|
+
"fields": null,
|
|
117044
|
+
"inputFields": [
|
|
117045
|
+
{
|
|
117046
|
+
"name": "latitude",
|
|
117047
|
+
"description": null,
|
|
117048
|
+
"type": {
|
|
117049
|
+
"kind": "ENUM",
|
|
117050
|
+
"name": "order_by",
|
|
117051
|
+
"ofType": null
|
|
117052
|
+
},
|
|
117053
|
+
"defaultValue": null,
|
|
117054
|
+
"isDeprecated": false,
|
|
117055
|
+
"deprecationReason": null
|
|
117056
|
+
},
|
|
117057
|
+
{
|
|
117058
|
+
"name": "longitude",
|
|
117059
|
+
"description": null,
|
|
117060
|
+
"type": {
|
|
117061
|
+
"kind": "ENUM",
|
|
117062
|
+
"name": "order_by",
|
|
117063
|
+
"ofType": null
|
|
117064
|
+
},
|
|
117065
|
+
"defaultValue": null,
|
|
117066
|
+
"isDeprecated": false,
|
|
117067
|
+
"deprecationReason": null
|
|
117068
|
+
}
|
|
117069
|
+
],
|
|
117070
|
+
"interfaces": null,
|
|
117071
|
+
"enumValues": null,
|
|
117072
|
+
"possibleTypes": null
|
|
117073
|
+
},
|
|
116382
117074
|
{
|
|
116383
117075
|
"kind": "OBJECT",
|
|
116384
117076
|
"name": "verified_addresses_stddev_pop_fields",
|
|
@@ -116414,6 +117106,41 @@
|
|
|
116414
117106
|
"enumValues": null,
|
|
116415
117107
|
"possibleTypes": null
|
|
116416
117108
|
},
|
|
117109
|
+
{
|
|
117110
|
+
"kind": "INPUT_OBJECT",
|
|
117111
|
+
"name": "verified_addresses_stddev_pop_order_by",
|
|
117112
|
+
"description": "order by stddev_pop() on columns of table \"verified_addresses\"",
|
|
117113
|
+
"fields": null,
|
|
117114
|
+
"inputFields": [
|
|
117115
|
+
{
|
|
117116
|
+
"name": "latitude",
|
|
117117
|
+
"description": null,
|
|
117118
|
+
"type": {
|
|
117119
|
+
"kind": "ENUM",
|
|
117120
|
+
"name": "order_by",
|
|
117121
|
+
"ofType": null
|
|
117122
|
+
},
|
|
117123
|
+
"defaultValue": null,
|
|
117124
|
+
"isDeprecated": false,
|
|
117125
|
+
"deprecationReason": null
|
|
117126
|
+
},
|
|
117127
|
+
{
|
|
117128
|
+
"name": "longitude",
|
|
117129
|
+
"description": null,
|
|
117130
|
+
"type": {
|
|
117131
|
+
"kind": "ENUM",
|
|
117132
|
+
"name": "order_by",
|
|
117133
|
+
"ofType": null
|
|
117134
|
+
},
|
|
117135
|
+
"defaultValue": null,
|
|
117136
|
+
"isDeprecated": false,
|
|
117137
|
+
"deprecationReason": null
|
|
117138
|
+
}
|
|
117139
|
+
],
|
|
117140
|
+
"interfaces": null,
|
|
117141
|
+
"enumValues": null,
|
|
117142
|
+
"possibleTypes": null
|
|
117143
|
+
},
|
|
116417
117144
|
{
|
|
116418
117145
|
"kind": "OBJECT",
|
|
116419
117146
|
"name": "verified_addresses_stddev_samp_fields",
|
|
@@ -116449,6 +117176,41 @@
|
|
|
116449
117176
|
"enumValues": null,
|
|
116450
117177
|
"possibleTypes": null
|
|
116451
117178
|
},
|
|
117179
|
+
{
|
|
117180
|
+
"kind": "INPUT_OBJECT",
|
|
117181
|
+
"name": "verified_addresses_stddev_samp_order_by",
|
|
117182
|
+
"description": "order by stddev_samp() on columns of table \"verified_addresses\"",
|
|
117183
|
+
"fields": null,
|
|
117184
|
+
"inputFields": [
|
|
117185
|
+
{
|
|
117186
|
+
"name": "latitude",
|
|
117187
|
+
"description": null,
|
|
117188
|
+
"type": {
|
|
117189
|
+
"kind": "ENUM",
|
|
117190
|
+
"name": "order_by",
|
|
117191
|
+
"ofType": null
|
|
117192
|
+
},
|
|
117193
|
+
"defaultValue": null,
|
|
117194
|
+
"isDeprecated": false,
|
|
117195
|
+
"deprecationReason": null
|
|
117196
|
+
},
|
|
117197
|
+
{
|
|
117198
|
+
"name": "longitude",
|
|
117199
|
+
"description": null,
|
|
117200
|
+
"type": {
|
|
117201
|
+
"kind": "ENUM",
|
|
117202
|
+
"name": "order_by",
|
|
117203
|
+
"ofType": null
|
|
117204
|
+
},
|
|
117205
|
+
"defaultValue": null,
|
|
117206
|
+
"isDeprecated": false,
|
|
117207
|
+
"deprecationReason": null
|
|
117208
|
+
}
|
|
117209
|
+
],
|
|
117210
|
+
"interfaces": null,
|
|
117211
|
+
"enumValues": null,
|
|
117212
|
+
"possibleTypes": null
|
|
117213
|
+
},
|
|
116452
117214
|
{
|
|
116453
117215
|
"kind": "INPUT_OBJECT",
|
|
116454
117216
|
"name": "verified_addresses_stream_cursor_input",
|
|
@@ -116714,6 +117476,41 @@
|
|
|
116714
117476
|
"enumValues": null,
|
|
116715
117477
|
"possibleTypes": null
|
|
116716
117478
|
},
|
|
117479
|
+
{
|
|
117480
|
+
"kind": "INPUT_OBJECT",
|
|
117481
|
+
"name": "verified_addresses_sum_order_by",
|
|
117482
|
+
"description": "order by sum() on columns of table \"verified_addresses\"",
|
|
117483
|
+
"fields": null,
|
|
117484
|
+
"inputFields": [
|
|
117485
|
+
{
|
|
117486
|
+
"name": "latitude",
|
|
117487
|
+
"description": null,
|
|
117488
|
+
"type": {
|
|
117489
|
+
"kind": "ENUM",
|
|
117490
|
+
"name": "order_by",
|
|
117491
|
+
"ofType": null
|
|
117492
|
+
},
|
|
117493
|
+
"defaultValue": null,
|
|
117494
|
+
"isDeprecated": false,
|
|
117495
|
+
"deprecationReason": null
|
|
117496
|
+
},
|
|
117497
|
+
{
|
|
117498
|
+
"name": "longitude",
|
|
117499
|
+
"description": null,
|
|
117500
|
+
"type": {
|
|
117501
|
+
"kind": "ENUM",
|
|
117502
|
+
"name": "order_by",
|
|
117503
|
+
"ofType": null
|
|
117504
|
+
},
|
|
117505
|
+
"defaultValue": null,
|
|
117506
|
+
"isDeprecated": false,
|
|
117507
|
+
"deprecationReason": null
|
|
117508
|
+
}
|
|
117509
|
+
],
|
|
117510
|
+
"interfaces": null,
|
|
117511
|
+
"enumValues": null,
|
|
117512
|
+
"possibleTypes": null
|
|
117513
|
+
},
|
|
116717
117514
|
{
|
|
116718
117515
|
"kind": "ENUM",
|
|
116719
117516
|
"name": "verified_addresses_update_column",
|
|
@@ -116961,6 +117758,41 @@
|
|
|
116961
117758
|
"enumValues": null,
|
|
116962
117759
|
"possibleTypes": null
|
|
116963
117760
|
},
|
|
117761
|
+
{
|
|
117762
|
+
"kind": "INPUT_OBJECT",
|
|
117763
|
+
"name": "verified_addresses_var_pop_order_by",
|
|
117764
|
+
"description": "order by var_pop() on columns of table \"verified_addresses\"",
|
|
117765
|
+
"fields": null,
|
|
117766
|
+
"inputFields": [
|
|
117767
|
+
{
|
|
117768
|
+
"name": "latitude",
|
|
117769
|
+
"description": null,
|
|
117770
|
+
"type": {
|
|
117771
|
+
"kind": "ENUM",
|
|
117772
|
+
"name": "order_by",
|
|
117773
|
+
"ofType": null
|
|
117774
|
+
},
|
|
117775
|
+
"defaultValue": null,
|
|
117776
|
+
"isDeprecated": false,
|
|
117777
|
+
"deprecationReason": null
|
|
117778
|
+
},
|
|
117779
|
+
{
|
|
117780
|
+
"name": "longitude",
|
|
117781
|
+
"description": null,
|
|
117782
|
+
"type": {
|
|
117783
|
+
"kind": "ENUM",
|
|
117784
|
+
"name": "order_by",
|
|
117785
|
+
"ofType": null
|
|
117786
|
+
},
|
|
117787
|
+
"defaultValue": null,
|
|
117788
|
+
"isDeprecated": false,
|
|
117789
|
+
"deprecationReason": null
|
|
117790
|
+
}
|
|
117791
|
+
],
|
|
117792
|
+
"interfaces": null,
|
|
117793
|
+
"enumValues": null,
|
|
117794
|
+
"possibleTypes": null
|
|
117795
|
+
},
|
|
116964
117796
|
{
|
|
116965
117797
|
"kind": "OBJECT",
|
|
116966
117798
|
"name": "verified_addresses_var_samp_fields",
|
|
@@ -116996,6 +117828,41 @@
|
|
|
116996
117828
|
"enumValues": null,
|
|
116997
117829
|
"possibleTypes": null
|
|
116998
117830
|
},
|
|
117831
|
+
{
|
|
117832
|
+
"kind": "INPUT_OBJECT",
|
|
117833
|
+
"name": "verified_addresses_var_samp_order_by",
|
|
117834
|
+
"description": "order by var_samp() on columns of table \"verified_addresses\"",
|
|
117835
|
+
"fields": null,
|
|
117836
|
+
"inputFields": [
|
|
117837
|
+
{
|
|
117838
|
+
"name": "latitude",
|
|
117839
|
+
"description": null,
|
|
117840
|
+
"type": {
|
|
117841
|
+
"kind": "ENUM",
|
|
117842
|
+
"name": "order_by",
|
|
117843
|
+
"ofType": null
|
|
117844
|
+
},
|
|
117845
|
+
"defaultValue": null,
|
|
117846
|
+
"isDeprecated": false,
|
|
117847
|
+
"deprecationReason": null
|
|
117848
|
+
},
|
|
117849
|
+
{
|
|
117850
|
+
"name": "longitude",
|
|
117851
|
+
"description": null,
|
|
117852
|
+
"type": {
|
|
117853
|
+
"kind": "ENUM",
|
|
117854
|
+
"name": "order_by",
|
|
117855
|
+
"ofType": null
|
|
117856
|
+
},
|
|
117857
|
+
"defaultValue": null,
|
|
117858
|
+
"isDeprecated": false,
|
|
117859
|
+
"deprecationReason": null
|
|
117860
|
+
}
|
|
117861
|
+
],
|
|
117862
|
+
"interfaces": null,
|
|
117863
|
+
"enumValues": null,
|
|
117864
|
+
"possibleTypes": null
|
|
117865
|
+
},
|
|
116999
117866
|
{
|
|
117000
117867
|
"kind": "OBJECT",
|
|
117001
117868
|
"name": "verified_addresses_variance_fields",
|
|
@@ -117031,6 +117898,41 @@
|
|
|
117031
117898
|
"enumValues": null,
|
|
117032
117899
|
"possibleTypes": null
|
|
117033
117900
|
},
|
|
117901
|
+
{
|
|
117902
|
+
"kind": "INPUT_OBJECT",
|
|
117903
|
+
"name": "verified_addresses_variance_order_by",
|
|
117904
|
+
"description": "order by variance() on columns of table \"verified_addresses\"",
|
|
117905
|
+
"fields": null,
|
|
117906
|
+
"inputFields": [
|
|
117907
|
+
{
|
|
117908
|
+
"name": "latitude",
|
|
117909
|
+
"description": null,
|
|
117910
|
+
"type": {
|
|
117911
|
+
"kind": "ENUM",
|
|
117912
|
+
"name": "order_by",
|
|
117913
|
+
"ofType": null
|
|
117914
|
+
},
|
|
117915
|
+
"defaultValue": null,
|
|
117916
|
+
"isDeprecated": false,
|
|
117917
|
+
"deprecationReason": null
|
|
117918
|
+
},
|
|
117919
|
+
{
|
|
117920
|
+
"name": "longitude",
|
|
117921
|
+
"description": null,
|
|
117922
|
+
"type": {
|
|
117923
|
+
"kind": "ENUM",
|
|
117924
|
+
"name": "order_by",
|
|
117925
|
+
"ofType": null
|
|
117926
|
+
},
|
|
117927
|
+
"defaultValue": null,
|
|
117928
|
+
"isDeprecated": false,
|
|
117929
|
+
"deprecationReason": null
|
|
117930
|
+
}
|
|
117931
|
+
],
|
|
117932
|
+
"interfaces": null,
|
|
117933
|
+
"enumValues": null,
|
|
117934
|
+
"possibleTypes": null
|
|
117935
|
+
},
|
|
117034
117936
|
{
|
|
117035
117937
|
"kind": "OBJECT",
|
|
117036
117938
|
"name": "website_blacklist",
|