This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.graphql
5689 lines (4715 loc) · 114 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
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
schema {
query: query_root
mutation: mutation_root
subscription: subscription_root
}
"""
expression to compare columns of type Boolean. All fields are combined with logical 'AND'.
"""
input Boolean_comparison_exp {
_eq: Boolean
_gt: Boolean
_gte: Boolean
_in: [Boolean!]
_is_null: Boolean
_lt: Boolean
_lte: Boolean
_neq: Boolean
_nin: [Boolean!]
}
"""
snake case group names
columns and relationships of "group"
"""
type group {
group: String!
"""An object relationship"""
group_ipa_pa: ipa_pa
}
"""
aggregated selection of "group"
"""
type group_aggregate {
aggregate: group_aggregate_fields
nodes: [group!]!
}
"""
aggregate fields of "group"
"""
type group_aggregate_fields {
count(columns: [group_select_column!], distinct: Boolean): Int
max: group_max_fields
min: group_min_fields
}
"""
order by aggregate values of table "group"
"""
input group_aggregate_order_by {
count: order_by
max: group_max_order_by
min: group_min_order_by
}
"""
input type for inserting array relation for remote table "group"
"""
input group_arr_rel_insert_input {
data: [group_insert_input!]!
on_conflict: group_on_conflict
}
"""
Boolean expression to filter rows from the table "group". All fields are combined with a logical 'AND'.
"""
input group_bool_exp {
_and: [group_bool_exp]
_not: group_bool_exp
_or: [group_bool_exp]
group: String_comparison_exp
group_ipa_pa: ipa_pa_bool_exp
}
"""
unique or primary key constraints on table "group"
"""
enum group_constraint {
"""unique or primary key constraint"""
groups_pkey
}
"""
input type for inserting data into table "group"
"""
input group_insert_input {
group: String
group_ipa_pa: ipa_pa_obj_rel_insert_input
}
"""aggregate max on columns"""
type group_max_fields {
group: String
}
"""
order by max() on columns of table "group"
"""
input group_max_order_by {
group: order_by
}
"""aggregate min on columns"""
type group_min_fields {
group: String
}
"""
order by min() on columns of table "group"
"""
input group_min_order_by {
group: order_by
}
"""
response of any mutation on the table "group"
"""
type group_mutation_response {
"""number of affected rows by the mutation"""
affected_rows: Int!
"""data of the affected rows by the mutation"""
returning: [group!]!
}
"""
input type for inserting object relation for remote table "group"
"""
input group_obj_rel_insert_input {
data: group_insert_input!
on_conflict: group_on_conflict
}
"""
on conflict condition type for table "group"
"""
input group_on_conflict {
constraint: group_constraint!
update_columns: [group_update_column!]!
where: group_bool_exp
}
"""
ordering options when selecting data from "group"
"""
input group_order_by {
group: order_by
group_ipa_pa: ipa_pa_order_by
}
"""
select columns of table "group"
"""
enum group_select_column {
"""column name"""
group
}
"""
input type for updating data in table "group"
"""
input group_set_input {
group: String
}
"""
update columns of table "group"
"""
enum group_update_column {
"""column name"""
group
}
"""
expression to compare columns of type Int. All fields are combined with logical 'AND'.
"""
input Int_comparison_exp {
_eq: Int
_gt: Int
_gte: Int
_in: [Int!]
_is_null: Boolean
_lt: Int
_lte: Int
_neq: Int
_nin: [Int!]
}
"""
columns and relationships of "ipa_ou"
"""
type ipa_ou {
Cap: String!
Fax: String!
Indirizzo: String!
Regione: String!
Tel: String!
cod_amm: String!
cod_aoo: String!
cod_ou: String!
cod_ou_padre: String!
cod_uni_ou: String!
cogn_resp: String!
comune: String!
des_ou: String!
mail1: String!
mail2: String!
mail3: String!
mail_resp: String!
nome_resp: String!
provincia: String!
tel_resp: String!
tipo_mail1: String!
tipo_mail2: String!
tipo_mail3: String!
}
"""
aggregated selection of "ipa_ou"
"""
type ipa_ou_aggregate {
aggregate: ipa_ou_aggregate_fields
nodes: [ipa_ou!]!
}
"""
aggregate fields of "ipa_ou"
"""
type ipa_ou_aggregate_fields {
count(columns: [ipa_ou_select_column!], distinct: Boolean): Int
max: ipa_ou_max_fields
min: ipa_ou_min_fields
}
"""
order by aggregate values of table "ipa_ou"
"""
input ipa_ou_aggregate_order_by {
count: order_by
max: ipa_ou_max_order_by
min: ipa_ou_min_order_by
}
"""
input type for inserting array relation for remote table "ipa_ou"
"""
input ipa_ou_arr_rel_insert_input {
data: [ipa_ou_insert_input!]!
on_conflict: ipa_ou_on_conflict
}
"""
Boolean expression to filter rows from the table "ipa_ou". All fields are combined with a logical 'AND'.
"""
input ipa_ou_bool_exp {
Cap: String_comparison_exp
Fax: String_comparison_exp
Indirizzo: String_comparison_exp
Regione: String_comparison_exp
Tel: String_comparison_exp
_and: [ipa_ou_bool_exp]
_not: ipa_ou_bool_exp
_or: [ipa_ou_bool_exp]
cod_amm: String_comparison_exp
cod_aoo: String_comparison_exp
cod_ou: String_comparison_exp
cod_ou_padre: String_comparison_exp
cod_uni_ou: String_comparison_exp
cogn_resp: String_comparison_exp
comune: String_comparison_exp
des_ou: String_comparison_exp
mail1: String_comparison_exp
mail2: String_comparison_exp
mail3: String_comparison_exp
mail_resp: String_comparison_exp
nome_resp: String_comparison_exp
provincia: String_comparison_exp
tel_resp: String_comparison_exp
tipo_mail1: String_comparison_exp
tipo_mail2: String_comparison_exp
tipo_mail3: String_comparison_exp
}
"""
unique or primary key constraints on table "ipa_ou"
"""
enum ipa_ou_constraint {
"""unique or primary key constraint"""
ipa_ou_pkey
}
"""
input type for inserting data into table "ipa_ou"
"""
input ipa_ou_insert_input {
Cap: String
Fax: String
Indirizzo: String
Regione: String
Tel: String
cod_amm: String
cod_aoo: String
cod_ou: String
cod_ou_padre: String
cod_uni_ou: String
cogn_resp: String
comune: String
des_ou: String
mail1: String
mail2: String
mail3: String
mail_resp: String
nome_resp: String
provincia: String
tel_resp: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
}
"""aggregate max on columns"""
type ipa_ou_max_fields {
Cap: String
Fax: String
Indirizzo: String
Regione: String
Tel: String
cod_amm: String
cod_aoo: String
cod_ou: String
cod_ou_padre: String
cod_uni_ou: String
cogn_resp: String
comune: String
des_ou: String
mail1: String
mail2: String
mail3: String
mail_resp: String
nome_resp: String
provincia: String
tel_resp: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
}
"""
order by max() on columns of table "ipa_ou"
"""
input ipa_ou_max_order_by {
Cap: order_by
Fax: order_by
Indirizzo: order_by
Regione: order_by
Tel: order_by
cod_amm: order_by
cod_aoo: order_by
cod_ou: order_by
cod_ou_padre: order_by
cod_uni_ou: order_by
cogn_resp: order_by
comune: order_by
des_ou: order_by
mail1: order_by
mail2: order_by
mail3: order_by
mail_resp: order_by
nome_resp: order_by
provincia: order_by
tel_resp: order_by
tipo_mail1: order_by
tipo_mail2: order_by
tipo_mail3: order_by
}
"""aggregate min on columns"""
type ipa_ou_min_fields {
Cap: String
Fax: String
Indirizzo: String
Regione: String
Tel: String
cod_amm: String
cod_aoo: String
cod_ou: String
cod_ou_padre: String
cod_uni_ou: String
cogn_resp: String
comune: String
des_ou: String
mail1: String
mail2: String
mail3: String
mail_resp: String
nome_resp: String
provincia: String
tel_resp: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
}
"""
order by min() on columns of table "ipa_ou"
"""
input ipa_ou_min_order_by {
Cap: order_by
Fax: order_by
Indirizzo: order_by
Regione: order_by
Tel: order_by
cod_amm: order_by
cod_aoo: order_by
cod_ou: order_by
cod_ou_padre: order_by
cod_uni_ou: order_by
cogn_resp: order_by
comune: order_by
des_ou: order_by
mail1: order_by
mail2: order_by
mail3: order_by
mail_resp: order_by
nome_resp: order_by
provincia: order_by
tel_resp: order_by
tipo_mail1: order_by
tipo_mail2: order_by
tipo_mail3: order_by
}
"""
response of any mutation on the table "ipa_ou"
"""
type ipa_ou_mutation_response {
"""number of affected rows by the mutation"""
affected_rows: Int!
"""data of the affected rows by the mutation"""
returning: [ipa_ou!]!
}
"""
input type for inserting object relation for remote table "ipa_ou"
"""
input ipa_ou_obj_rel_insert_input {
data: ipa_ou_insert_input!
on_conflict: ipa_ou_on_conflict
}
"""
on conflict condition type for table "ipa_ou"
"""
input ipa_ou_on_conflict {
constraint: ipa_ou_constraint!
update_columns: [ipa_ou_update_column!]!
where: ipa_ou_bool_exp
}
"""
ordering options when selecting data from "ipa_ou"
"""
input ipa_ou_order_by {
Cap: order_by
Fax: order_by
Indirizzo: order_by
Regione: order_by
Tel: order_by
cod_amm: order_by
cod_aoo: order_by
cod_ou: order_by
cod_ou_padre: order_by
cod_uni_ou: order_by
cogn_resp: order_by
comune: order_by
des_ou: order_by
mail1: order_by
mail2: order_by
mail3: order_by
mail_resp: order_by
nome_resp: order_by
provincia: order_by
tel_resp: order_by
tipo_mail1: order_by
tipo_mail2: order_by
tipo_mail3: order_by
}
"""
select columns of table "ipa_ou"
"""
enum ipa_ou_select_column {
"""column name"""
Cap
"""column name"""
Fax
"""column name"""
Indirizzo
"""column name"""
Regione
"""column name"""
Tel
"""column name"""
cod_amm
"""column name"""
cod_aoo
"""column name"""
cod_ou
"""column name"""
cod_ou_padre
"""column name"""
cod_uni_ou
"""column name"""
cogn_resp
"""column name"""
comune
"""column name"""
des_ou
"""column name"""
mail1
"""column name"""
mail2
"""column name"""
mail3
"""column name"""
mail_resp
"""column name"""
nome_resp
"""column name"""
provincia
"""column name"""
tel_resp
"""column name"""
tipo_mail1
"""column name"""
tipo_mail2
"""column name"""
tipo_mail3
}
"""
input type for updating data in table "ipa_ou"
"""
input ipa_ou_set_input {
Cap: String
Fax: String
Indirizzo: String
Regione: String
Tel: String
cod_amm: String
cod_aoo: String
cod_ou: String
cod_ou_padre: String
cod_uni_ou: String
cogn_resp: String
comune: String
des_ou: String
mail1: String
mail2: String
mail3: String
mail_resp: String
nome_resp: String
provincia: String
tel_resp: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
}
"""
update columns of table "ipa_ou"
"""
enum ipa_ou_update_column {
"""column name"""
Cap
"""column name"""
Fax
"""column name"""
Indirizzo
"""column name"""
Regione
"""column name"""
Tel
"""column name"""
cod_amm
"""column name"""
cod_aoo
"""column name"""
cod_ou
"""column name"""
cod_ou_padre
"""column name"""
cod_uni_ou
"""column name"""
cogn_resp
"""column name"""
comune
"""column name"""
des_ou
"""column name"""
mail1
"""column name"""
mail2
"""column name"""
mail3
"""column name"""
mail_resp
"""column name"""
nome_resp
"""column name"""
provincia
"""column name"""
tel_resp
"""column name"""
tipo_mail1
"""column name"""
tipo_mail2
"""column name"""
tipo_mail3
}
"""
columns and relationships of "ipa_pa"
"""
type ipa_pa {
Cap: String!
Cf: String!
Comune: String!
Indirizzo: String!
Provincia: String!
Regione: String!
acronimo: String!
cf_validato: String!
cod_amm: String!
cogn_resp: String!
des_amm: String!
des_amm_Comune: String!
liv_accessibili: String!
mail1: String!
mail2: String!
mail3: String!
mail4: String!
mail5: String!
nome_resp: String!
sito_istituzionale: String!
tipo_mail1: String!
tipo_mail2: String!
tipo_mail3: String!
tipo_mail4: String!
tipo_mail5: String!
tipologia_amm: String!
tipologia_istat: String!
titolo_resp: String!
url_facebook: String!
url_googleplus: String!
url_twitter: String!
url_youtube: String!
}
"""
aggregated selection of "ipa_pa"
"""
type ipa_pa_aggregate {
aggregate: ipa_pa_aggregate_fields
nodes: [ipa_pa!]!
}
"""
aggregate fields of "ipa_pa"
"""
type ipa_pa_aggregate_fields {
count(columns: [ipa_pa_select_column!], distinct: Boolean): Int
max: ipa_pa_max_fields
min: ipa_pa_min_fields
}
"""
order by aggregate values of table "ipa_pa"
"""
input ipa_pa_aggregate_order_by {
count: order_by
max: ipa_pa_max_order_by
min: ipa_pa_min_order_by
}
"""
input type for inserting array relation for remote table "ipa_pa"
"""
input ipa_pa_arr_rel_insert_input {
data: [ipa_pa_insert_input!]!
on_conflict: ipa_pa_on_conflict
}
"""
Boolean expression to filter rows from the table "ipa_pa". All fields are combined with a logical 'AND'.
"""
input ipa_pa_bool_exp {
Cap: String_comparison_exp
Cf: String_comparison_exp
Comune: String_comparison_exp
Indirizzo: String_comparison_exp
Provincia: String_comparison_exp
Regione: String_comparison_exp
_and: [ipa_pa_bool_exp]
_not: ipa_pa_bool_exp
_or: [ipa_pa_bool_exp]
acronimo: String_comparison_exp
cf_validato: String_comparison_exp
cod_amm: String_comparison_exp
cogn_resp: String_comparison_exp
des_amm: String_comparison_exp
des_amm_Comune: String_comparison_exp
liv_accessibili: String_comparison_exp
mail1: String_comparison_exp
mail2: String_comparison_exp
mail3: String_comparison_exp
mail4: String_comparison_exp
mail5: String_comparison_exp
nome_resp: String_comparison_exp
sito_istituzionale: String_comparison_exp
tipo_mail1: String_comparison_exp
tipo_mail2: String_comparison_exp
tipo_mail3: String_comparison_exp
tipo_mail4: String_comparison_exp
tipo_mail5: String_comparison_exp
tipologia_amm: String_comparison_exp
tipologia_istat: String_comparison_exp
titolo_resp: String_comparison_exp
url_facebook: String_comparison_exp
url_googleplus: String_comparison_exp
url_twitter: String_comparison_exp
url_youtube: String_comparison_exp
}
"""
unique or primary key constraints on table "ipa_pa"
"""
enum ipa_pa_constraint {
"""unique or primary key constraint"""
ipa_pa_pkey
}
"""
input type for inserting data into table "ipa_pa"
"""
input ipa_pa_insert_input {
Cap: String
Cf: String
Comune: String
Indirizzo: String
Provincia: String
Regione: String
acronimo: String
cf_validato: String
cod_amm: String
cogn_resp: String
des_amm: String
des_amm_Comune: String
liv_accessibili: String
mail1: String
mail2: String
mail3: String
mail4: String
mail5: String
nome_resp: String
sito_istituzionale: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
tipo_mail4: String
tipo_mail5: String
tipologia_amm: String
tipologia_istat: String
titolo_resp: String
url_facebook: String
url_googleplus: String
url_twitter: String
url_youtube: String
}
"""aggregate max on columns"""
type ipa_pa_max_fields {
Cap: String
Cf: String
Comune: String
Indirizzo: String
Provincia: String
Regione: String
acronimo: String
cf_validato: String
cod_amm: String
cogn_resp: String
des_amm: String
des_amm_Comune: String
liv_accessibili: String
mail1: String
mail2: String
mail3: String
mail4: String
mail5: String
nome_resp: String
sito_istituzionale: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
tipo_mail4: String
tipo_mail5: String
tipologia_amm: String
tipologia_istat: String
titolo_resp: String
url_facebook: String
url_googleplus: String
url_twitter: String
url_youtube: String
}
"""
order by max() on columns of table "ipa_pa"
"""
input ipa_pa_max_order_by {
Cap: order_by
Cf: order_by
Comune: order_by
Indirizzo: order_by
Provincia: order_by
Regione: order_by
acronimo: order_by
cf_validato: order_by
cod_amm: order_by
cogn_resp: order_by
des_amm: order_by
des_amm_Comune: order_by
liv_accessibili: order_by
mail1: order_by
mail2: order_by
mail3: order_by
mail4: order_by
mail5: order_by
nome_resp: order_by
sito_istituzionale: order_by
tipo_mail1: order_by
tipo_mail2: order_by
tipo_mail3: order_by
tipo_mail4: order_by
tipo_mail5: order_by
tipologia_amm: order_by
tipologia_istat: order_by
titolo_resp: order_by
url_facebook: order_by
url_googleplus: order_by
url_twitter: order_by
url_youtube: order_by
}
"""aggregate min on columns"""
type ipa_pa_min_fields {
Cap: String
Cf: String
Comune: String
Indirizzo: String
Provincia: String
Regione: String
acronimo: String
cf_validato: String
cod_amm: String
cogn_resp: String
des_amm: String
des_amm_Comune: String
liv_accessibili: String
mail1: String
mail2: String
mail3: String
mail4: String
mail5: String
nome_resp: String
sito_istituzionale: String
tipo_mail1: String
tipo_mail2: String
tipo_mail3: String
tipo_mail4: String
tipo_mail5: String
tipologia_amm: String
tipologia_istat: String
titolo_resp: String
url_facebook: String
url_googleplus: String
url_twitter: String
url_youtube: String
}
"""
order by min() on columns of table "ipa_pa"
"""
input ipa_pa_min_order_by {
Cap: order_by
Cf: order_by
Comune: order_by
Indirizzo: order_by
Provincia: order_by
Regione: order_by
acronimo: order_by
cf_validato: order_by
cod_amm: order_by
cogn_resp: order_by
des_amm: order_by
des_amm_Comune: order_by
liv_accessibili: order_by
mail1: order_by
mail2: order_by
mail3: order_by
mail4: order_by
mail5: order_by
nome_resp: order_by
sito_istituzionale: order_by
tipo_mail1: order_by
tipo_mail2: order_by
tipo_mail3: order_by
tipo_mail4: order_by
tipo_mail5: order_by
tipologia_amm: order_by
tipologia_istat: order_by
titolo_resp: order_by
url_facebook: order_by
url_googleplus: order_by
url_twitter: order_by
url_youtube: order_by
}
"""
response of any mutation on the table "ipa_pa"
"""
type ipa_pa_mutation_response {
"""number of affected rows by the mutation"""
affected_rows: Int!
"""data of the affected rows by the mutation"""
returning: [ipa_pa!]!
}
"""
input type for inserting object relation for remote table "ipa_pa"
"""
input ipa_pa_obj_rel_insert_input {
data: ipa_pa_insert_input!
on_conflict: ipa_pa_on_conflict
}
"""
on conflict condition type for table "ipa_pa"