-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
4181 lines (4181 loc) · 206 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
}
scalar timestamptz
scalar uuid
"""
columns and relationships of "article_tag"
"""
type article_tag {
"An object relationship"
article: articles
article_id: Int!
id: Int!
"An object relationship"
tag: tags
tag_id: Int!
}
"""
aggregated selection of "article_tag"
"""
type article_tag_aggregate {
aggregate: article_tag_aggregate_fields
nodes: [article_tag!]!
}
"""
aggregate fields of "article_tag"
"""
type article_tag_aggregate_fields {
avg: article_tag_avg_fields
count(columns: [article_tag_select_column!], distinct: Boolean): Int!
max: article_tag_max_fields
min: article_tag_min_fields
stddev: article_tag_stddev_fields
stddev_pop: article_tag_stddev_pop_fields
stddev_samp: article_tag_stddev_samp_fields
sum: article_tag_sum_fields
var_pop: article_tag_var_pop_fields
var_samp: article_tag_var_samp_fields
variance: article_tag_variance_fields
}
"aggregate avg on columns"
type article_tag_avg_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate max on columns"
type article_tag_max_fields {
article_id: Int
id: Int
tag_id: Int
}
"aggregate min on columns"
type article_tag_min_fields {
article_id: Int
id: Int
tag_id: Int
}
"""
response of any mutation on the table "article_tag"
"""
type article_tag_mutation_response {
"number of rows affected by the mutation"
affected_rows: Int!
"data from the rows affected by the mutation"
returning: [article_tag!]!
}
"aggregate stddev on columns"
type article_tag_stddev_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate stddev_pop on columns"
type article_tag_stddev_pop_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate stddev_samp on columns"
type article_tag_stddev_samp_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate sum on columns"
type article_tag_sum_fields {
article_id: Int
id: Int
tag_id: Int
}
"aggregate var_pop on columns"
type article_tag_var_pop_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate var_samp on columns"
type article_tag_var_samp_fields {
article_id: Float
id: Float
tag_id: Float
}
"aggregate variance on columns"
type article_tag_variance_fields {
article_id: Float
id: Float
tag_id: Float
}
"""
columns and relationships of "articles"
"""
type articles {
"An array relationship"
article_tags(
"distinct select on columns"
distinct_on: [article_tag_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [article_tag_order_by!],
"filter the rows returned"
where: article_tag_bool_exp
): [article_tag!]!
"An aggregate relationship"
article_tags_aggregate(
"distinct select on columns"
distinct_on: [article_tag_select_column!],
"limit the number of rows returned"
limit: Int,
"skip the first n rows. Use only with order_by"
offset: Int,
"sort the rows by one or more columns"
order_by: [article_tag_order_by!],
"filter the rows returned"
where: article_tag_bool_exp
): article_tag_aggregate!
id: Int!
title: String!
}
"""
aggregated selection of "articles"
"""
type articles_aggregate {
aggregate: articles_aggregate_fields
nodes: [articles!]!
}
"""
aggregate fields of "articles"
"""
type articles_aggregate_fields {
avg: articles_avg_fields
count(columns: [articles_select_column!], distinct: Boolean): Int!
max: articles_max_fields
min: articles_min_fields
stddev: articles_stddev_fields
stddev_pop: articles_stddev_pop_fields
stddev_samp: articles_stddev_samp_fields
sum: articles_sum_fields
var_pop: articles_var_pop_fields
var_samp: articles_var_samp_fields
variance: articles_variance_fields
}
"aggregate avg on columns"
type articles_avg_fields {
id: Float
}
"aggregate max on columns"
type articles_max_fields {
id: Int
title: String
}
"aggregate min on columns"
type articles_min_fields {
id: Int
title: String
}
"""
response of any mutation on the table "articles"
"""
type articles_mutation_response {
"number of rows affected by the mutation"
affected_rows: Int!
"data from the rows affected by the mutation"
returning: [articles!]!
}
"aggregate stddev on columns"
type articles_stddev_fields {
id: Float
}
"aggregate stddev_pop on columns"
type articles_stddev_pop_fields {
id: Float
}
"aggregate stddev_samp on columns"
type articles_stddev_samp_fields {
id: Float
}
"aggregate sum on columns"
type articles_sum_fields {
id: Int
}
"aggregate var_pop on columns"
type articles_var_pop_fields {
id: Float
}
"aggregate var_samp on columns"
type articles_var_samp_fields {
id: Float
}
"aggregate variance on columns"
type articles_variance_fields {
id: Float
}
"Maintain checklist under task"
type checklist {
created_at: timestamptz!
created_by: uuid!
deleted_at: timestamptz
id: uuid!
task_id: uuid!
todo: String!
updated_at: timestamptz!
}
"""
aggregated selection of "checklist"
"""
type checklist_aggregate {
aggregate: checklist_aggregate_fields
nodes: [checklist!]!
}
"""
aggregate fields of "checklist"
"""
type checklist_aggregate_fields {
count(columns: [checklist_select_column!], distinct: Boolean): Int!
max: checklist_max_fields
min: checklist_min_fields
}
"aggregate max on columns"
type checklist_max_fields {
created_at: timestamptz
created_by: uuid
deleted_at: timestamptz
id: uuid
task_id: uuid
todo: String
updated_at: timestamptz
}
"aggregate min on columns"
type checklist_min_fields {
created_at: timestamptz
created_by: uuid
deleted_at: timestamptz
id: uuid
task_id: uuid
todo: String
updated_at: timestamptz
}
"""
response of any mutation on the table "checklist"
"""
type checklist_mutation_response {
"number of rows affected by the mutation"
affected_rows: Int!
"data from the rows affected by the mutation"
returning: [checklist!]!
}
"mutation root"
type mutation_root {
"""
delete data from the table: "article_tag"
"""
delete_article_tag(
"filter the rows which have to be deleted"
where: article_tag_bool_exp!
): article_tag_mutation_response
"""
delete single row from the table: "article_tag"
"""
delete_article_tag_by_pk(id: Int!): article_tag
"""
delete data from the table: "articles"
"""
delete_articles(
"filter the rows which have to be deleted"
where: articles_bool_exp!
): articles_mutation_response
"""
delete single row from the table: "articles"
"""
delete_articles_by_pk(id: Int!): articles
"""
delete data from the table: "checklist"
"""
delete_checklist(
"filter the rows which have to be deleted"
where: checklist_bool_exp!
): checklist_mutation_response
"""
delete single row from the table: "checklist"
"""
delete_checklist_by_pk(id: uuid!): checklist
"""
delete data from the table: "organisation"
"""
delete_organisation(
"filter the rows which have to be deleted"
where: organisation_bool_exp!
): organisation_mutation_response
"""
delete single row from the table: "organisation"
"""
delete_organisation_by_pk(id: uuid!): organisation
"""
delete data from the table: "plans"
"""
delete_plans(
"filter the rows which have to be deleted"
where: plans_bool_exp!
): plans_mutation_response
"""
delete single row from the table: "plans"
"""
delete_plans_by_pk(id: Int!): plans
"""
delete data from the table: "project"
"""
delete_project(
"filter the rows which have to be deleted"
where: project_bool_exp!
): project_mutation_response
"""
delete single row from the table: "project"
"""
delete_project_by_pk(id: uuid!): project
"""
delete data from the table: "project_user"
"""
delete_project_user(
"filter the rows which have to be deleted"
where: project_user_bool_exp!
): project_user_mutation_response
"""
delete single row from the table: "project_user"
"""
delete_project_user_by_pk(id: uuid!): project_user
"""
delete data from the table: "services"
"""
delete_services(
"filter the rows which have to be deleted"
where: services_bool_exp!
): services_mutation_response
"""
delete single row from the table: "services"
"""
delete_services_by_pk(id: uuid!): services
"""
delete data from the table: "tags"
"""
delete_tags(
"filter the rows which have to be deleted"
where: tags_bool_exp!
): tags_mutation_response
"""
delete single row from the table: "tags"
"""
delete_tags_by_pk(id: Int!): tags
"""
delete data from the table: "task_category"
"""
delete_task_category(
"filter the rows which have to be deleted"
where: task_category_bool_exp!
): task_category_mutation_response
"""
delete single row from the table: "task_category"
"""
delete_task_category_by_pk(id: Int!): task_category
"""
delete data from the table: "tasks"
"""
delete_tasks(
"filter the rows which have to be deleted"
where: tasks_bool_exp!
): tasks_mutation_response
"""
delete single row from the table: "tasks"
"""
delete_tasks_by_pk(id: uuid!): tasks
"""
delete data from the table: "temp_post"
"""
delete_temp_post(
"filter the rows which have to be deleted"
where: temp_post_bool_exp!
): temp_post_mutation_response
"""
delete single row from the table: "temp_post"
"""
delete_temp_post_by_pk(id: Int!): temp_post
"""
delete data from the table: "users"
"""
delete_users(
"filter the rows which have to be deleted"
where: users_bool_exp!
): users_mutation_response
"""
delete single row from the table: "users"
"""
delete_users_by_pk(id: uuid!): users
"""
insert data into the table: "article_tag"
"""
insert_article_tag(
"the rows to be inserted"
objects: [article_tag_insert_input!]!,
"upsert condition"
on_conflict: article_tag_on_conflict
): article_tag_mutation_response
"""
insert a single row into the table: "article_tag"
"""
insert_article_tag_one(
"the row to be inserted"
object: article_tag_insert_input!,
"upsert condition"
on_conflict: article_tag_on_conflict
): article_tag
"""
insert data into the table: "articles"
"""
insert_articles(
"the rows to be inserted"
objects: [articles_insert_input!]!,
"upsert condition"
on_conflict: articles_on_conflict
): articles_mutation_response
"""
insert a single row into the table: "articles"
"""
insert_articles_one(
"the row to be inserted"
object: articles_insert_input!,
"upsert condition"
on_conflict: articles_on_conflict
): articles
"""
insert data into the table: "checklist"
"""
insert_checklist(
"the rows to be inserted"
objects: [checklist_insert_input!]!,
"upsert condition"
on_conflict: checklist_on_conflict
): checklist_mutation_response
"""
insert a single row into the table: "checklist"
"""
insert_checklist_one(
"the row to be inserted"
object: checklist_insert_input!,
"upsert condition"
on_conflict: checklist_on_conflict
): checklist
"""
insert data into the table: "organisation"
"""
insert_organisation(
"the rows to be inserted"
objects: [organisation_insert_input!]!,
"upsert condition"
on_conflict: organisation_on_conflict
): organisation_mutation_response
"""
insert a single row into the table: "organisation"
"""
insert_organisation_one(
"the row to be inserted"
object: organisation_insert_input!,
"upsert condition"
on_conflict: organisation_on_conflict
): organisation
"""
insert data into the table: "plans"
"""
insert_plans(
"the rows to be inserted"
objects: [plans_insert_input!]!,
"upsert condition"
on_conflict: plans_on_conflict
): plans_mutation_response
"""
insert a single row into the table: "plans"
"""
insert_plans_one(
"the row to be inserted"
object: plans_insert_input!,
"upsert condition"
on_conflict: plans_on_conflict
): plans
"""
insert data into the table: "project"
"""
insert_project(
"the rows to be inserted"
objects: [project_insert_input!]!,
"upsert condition"
on_conflict: project_on_conflict
): project_mutation_response
"""
insert a single row into the table: "project"
"""
insert_project_one(
"the row to be inserted"
object: project_insert_input!,
"upsert condition"
on_conflict: project_on_conflict
): project
"""
insert data into the table: "project_user"
"""
insert_project_user(
"the rows to be inserted"
objects: [project_user_insert_input!]!,
"upsert condition"
on_conflict: project_user_on_conflict
): project_user_mutation_response
"""
insert a single row into the table: "project_user"
"""
insert_project_user_one(
"the row to be inserted"
object: project_user_insert_input!,
"upsert condition"
on_conflict: project_user_on_conflict
): project_user
"""
insert data into the table: "services"
"""
insert_services(
"the rows to be inserted"
objects: [services_insert_input!]!,
"upsert condition"
on_conflict: services_on_conflict
): services_mutation_response
"""
insert a single row into the table: "services"
"""
insert_services_one(
"the row to be inserted"
object: services_insert_input!,
"upsert condition"
on_conflict: services_on_conflict
): services
"""
insert data into the table: "tags"
"""
insert_tags(
"the rows to be inserted"
objects: [tags_insert_input!]!,
"upsert condition"
on_conflict: tags_on_conflict
): tags_mutation_response
"""
insert a single row into the table: "tags"
"""
insert_tags_one(
"the row to be inserted"
object: tags_insert_input!,
"upsert condition"
on_conflict: tags_on_conflict
): tags
"""
insert data into the table: "task_category"
"""
insert_task_category(
"the rows to be inserted"
objects: [task_category_insert_input!]!,
"upsert condition"
on_conflict: task_category_on_conflict
): task_category_mutation_response
"""
insert a single row into the table: "task_category"
"""
insert_task_category_one(
"the row to be inserted"
object: task_category_insert_input!,
"upsert condition"
on_conflict: task_category_on_conflict
): task_category
"""
insert data into the table: "tasks"
"""
insert_tasks(
"the rows to be inserted"
objects: [tasks_insert_input!]!,
"upsert condition"
on_conflict: tasks_on_conflict
): tasks_mutation_response
"""
insert a single row into the table: "tasks"
"""
insert_tasks_one(
"the row to be inserted"
object: tasks_insert_input!,
"upsert condition"
on_conflict: tasks_on_conflict
): tasks
"""
insert data into the table: "temp_post"
"""
insert_temp_post(
"the rows to be inserted"
objects: [temp_post_insert_input!]!,
"upsert condition"
on_conflict: temp_post_on_conflict
): temp_post_mutation_response
"""
insert a single row into the table: "temp_post"
"""
insert_temp_post_one(
"the row to be inserted"
object: temp_post_insert_input!,
"upsert condition"
on_conflict: temp_post_on_conflict
): temp_post
"""
insert data into the table: "users"
"""
insert_users(
"the rows to be inserted"
objects: [users_insert_input!]!,
"upsert condition"
on_conflict: users_on_conflict
): users_mutation_response
"""
insert a single row into the table: "users"
"""
insert_users_one(
"the row to be inserted"
object: users_insert_input!,
"upsert condition"
on_conflict: users_on_conflict
): users
"""
update data of the table: "article_tag"
"""
update_article_tag(
"increments the numeric columns with given value of the filtered values"
_inc: article_tag_inc_input,
"sets the columns of the filtered rows to the given values"
_set: article_tag_set_input,
"filter the rows which have to be updated"
where: article_tag_bool_exp!
): article_tag_mutation_response
"""
update single row of the table: "article_tag"
"""
update_article_tag_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: article_tag_inc_input,
"sets the columns of the filtered rows to the given values"
_set: article_tag_set_input,pk_columns: article_tag_pk_columns_input! ): article_tag
"""
update data of the table: "articles"
"""
update_articles(
"increments the numeric columns with given value of the filtered values"
_inc: articles_inc_input,
"sets the columns of the filtered rows to the given values"
_set: articles_set_input,
"filter the rows which have to be updated"
where: articles_bool_exp!
): articles_mutation_response
"""
update single row of the table: "articles"
"""
update_articles_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: articles_inc_input,
"sets the columns of the filtered rows to the given values"
_set: articles_set_input,pk_columns: articles_pk_columns_input! ): articles
"""
update data of the table: "checklist"
"""
update_checklist(
"sets the columns of the filtered rows to the given values"
_set: checklist_set_input,
"filter the rows which have to be updated"
where: checklist_bool_exp!
): checklist_mutation_response
"""
update single row of the table: "checklist"
"""
update_checklist_by_pk(
"sets the columns of the filtered rows to the given values"
_set: checklist_set_input,pk_columns: checklist_pk_columns_input! ): checklist
"""
update data of the table: "organisation"
"""
update_organisation(
"sets the columns of the filtered rows to the given values"
_set: organisation_set_input,
"filter the rows which have to be updated"
where: organisation_bool_exp!
): organisation_mutation_response
"""
update single row of the table: "organisation"
"""
update_organisation_by_pk(
"sets the columns of the filtered rows to the given values"
_set: organisation_set_input,pk_columns: organisation_pk_columns_input! ): organisation
"""
update data of the table: "plans"
"""
update_plans(
"increments the numeric columns with given value of the filtered values"
_inc: plans_inc_input,
"sets the columns of the filtered rows to the given values"
_set: plans_set_input,
"filter the rows which have to be updated"
where: plans_bool_exp!
): plans_mutation_response
"""
update single row of the table: "plans"
"""
update_plans_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: plans_inc_input,
"sets the columns of the filtered rows to the given values"
_set: plans_set_input,pk_columns: plans_pk_columns_input! ): plans
"""
update data of the table: "project"
"""
update_project(
"sets the columns of the filtered rows to the given values"
_set: project_set_input,
"filter the rows which have to be updated"
where: project_bool_exp!
): project_mutation_response
"""
update single row of the table: "project"
"""
update_project_by_pk(
"sets the columns of the filtered rows to the given values"
_set: project_set_input,pk_columns: project_pk_columns_input! ): project
"""
update data of the table: "project_user"
"""
update_project_user(
"sets the columns of the filtered rows to the given values"
_set: project_user_set_input,
"filter the rows which have to be updated"
where: project_user_bool_exp!
): project_user_mutation_response
"""
update single row of the table: "project_user"
"""
update_project_user_by_pk(
"sets the columns of the filtered rows to the given values"
_set: project_user_set_input,pk_columns: project_user_pk_columns_input! ): project_user
"""
update data of the table: "services"
"""
update_services(
"sets the columns of the filtered rows to the given values"
_set: services_set_input,
"filter the rows which have to be updated"
where: services_bool_exp!
): services_mutation_response
"""
update single row of the table: "services"
"""
update_services_by_pk(
"sets the columns of the filtered rows to the given values"
_set: services_set_input,pk_columns: services_pk_columns_input! ): services
"""
update data of the table: "tags"
"""
update_tags(
"increments the numeric columns with given value of the filtered values"
_inc: tags_inc_input,
"sets the columns of the filtered rows to the given values"
_set: tags_set_input,
"filter the rows which have to be updated"
where: tags_bool_exp!
): tags_mutation_response
"""
update single row of the table: "tags"
"""
update_tags_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: tags_inc_input,
"sets the columns of the filtered rows to the given values"
_set: tags_set_input,pk_columns: tags_pk_columns_input! ): tags
"""
update data of the table: "task_category"
"""
update_task_category(
"increments the numeric columns with given value of the filtered values"
_inc: task_category_inc_input,
"sets the columns of the filtered rows to the given values"
_set: task_category_set_input,
"filter the rows which have to be updated"
where: task_category_bool_exp!
): task_category_mutation_response
"""
update single row of the table: "task_category"
"""
update_task_category_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: task_category_inc_input,
"sets the columns of the filtered rows to the given values"
_set: task_category_set_input,pk_columns: task_category_pk_columns_input! ): task_category
"""
update data of the table: "tasks"
"""
update_tasks(
"increments the numeric columns with given value of the filtered values"
_inc: tasks_inc_input,
"sets the columns of the filtered rows to the given values"
_set: tasks_set_input,
"filter the rows which have to be updated"
where: tasks_bool_exp!
): tasks_mutation_response
"""
update single row of the table: "tasks"
"""
update_tasks_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: tasks_inc_input,
"sets the columns of the filtered rows to the given values"
_set: tasks_set_input,pk_columns: tasks_pk_columns_input! ): tasks
"""
update data of the table: "temp_post"
"""
update_temp_post(
"increments the numeric columns with given value of the filtered values"
_inc: temp_post_inc_input,
"sets the columns of the filtered rows to the given values"
_set: temp_post_set_input,
"filter the rows which have to be updated"
where: temp_post_bool_exp!
): temp_post_mutation_response
"""
update single row of the table: "temp_post"
"""
update_temp_post_by_pk(
"increments the numeric columns with given value of the filtered values"
_inc: temp_post_inc_input,
"sets the columns of the filtered rows to the given values"
_set: temp_post_set_input,pk_columns: temp_post_pk_columns_input! ): temp_post
"""
update data of the table: "users"
"""
update_users(
"sets the columns of the filtered rows to the given values"
_set: users_set_input,
"filter the rows which have to be updated"
where: users_bool_exp!
): users_mutation_response
"""
update single row of the table: "users"
"""
update_users_by_pk(
"sets the columns of the filtered rows to the given values"
_set: users_set_input,pk_columns: users_pk_columns_input! ): users
}
"""
columns and relationships of "organisation"
"""
type organisation {
created_at: timestamptz!
id: uuid!
updated_at: timestamptz!
}
"""
aggregated selection of "organisation"
"""
type organisation_aggregate {
aggregate: organisation_aggregate_fields
nodes: [organisation!]!
}
"""
aggregate fields of "organisation"
"""
type organisation_aggregate_fields {
count(columns: [organisation_select_column!], distinct: Boolean): Int!
max: organisation_max_fields
min: organisation_min_fields
}
"aggregate max on columns"
type organisation_max_fields {
created_at: timestamptz
id: uuid
updated_at: timestamptz
}
"aggregate min on columns"
type organisation_min_fields {
created_at: timestamptz
id: uuid
updated_at: timestamptz
}
"""
response of any mutation on the table "organisation"
"""
type organisation_mutation_response {
"number of rows affected by the mutation"
affected_rows: Int!
"data from the rows affected by the mutation"
returning: [organisation!]!
}
"Includes blueprint of area"
type plans {
created_at: timestamptz!
created_by: uuid!
deleted_at: timestamptz
description: String
id: Int!
name: String
project_id: uuid!
updated_at: timestamptz!
url: String!
}
"""
aggregated selection of "plans"
"""
type plans_aggregate {
aggregate: plans_aggregate_fields
nodes: [plans!]!
}
"""
aggregate fields of "plans"
"""
type plans_aggregate_fields {
avg: plans_avg_fields
count(columns: [plans_select_column!], distinct: Boolean): Int!
max: plans_max_fields
min: plans_min_fields
stddev: plans_stddev_fields
stddev_pop: plans_stddev_pop_fields
stddev_samp: plans_stddev_samp_fields
sum: plans_sum_fields
var_pop: plans_var_pop_fields
var_samp: plans_var_samp_fields
variance: plans_variance_fields
}
"aggregate avg on columns"
type plans_avg_fields {
id: Float
}
"aggregate max on columns"
type plans_max_fields {
created_at: timestamptz
created_by: uuid
deleted_at: timestamptz
description: String
id: Int
name: String
project_id: uuid
updated_at: timestamptz
url: String
}
"aggregate min on columns"
type plans_min_fields {
created_at: timestamptz
created_by: uuid
deleted_at: timestamptz
description: String
id: Int
name: String
project_id: uuid
updated_at: timestamptz
url: String
}
"""
response of any mutation on the table "plans"
"""
type plans_mutation_response {
"number of rows affected by the mutation"
affected_rows: Int!
"data from the rows affected by the mutation"
returning: [plans!]!
}
"aggregate stddev on columns"
type plans_stddev_fields {
id: Float
}
"aggregate stddev_pop on columns"
type plans_stddev_pop_fields {
id: Float
}
"aggregate stddev_samp on columns"