This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInsomnia.yaml
1568 lines (1568 loc) · 61.1 KB
/
Insomnia.yaml
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
_type: export
__export_format: 4
__export_date: 2021-01-23T13:43:48.557Z
__export_source: insomnia.desktop.app:v2020.5.2
resources:
- _id: req_7c4b81c4bd664de3864fad87a00c3abf
parentId: fld_62f57f28cd0144558343e7f716ed9c06
modified: 1607810237575
created: 1606564883040
url: https://api.cloudmersive.com/convert/autodetect/to/pdf
name: cloudmersive
description: ""
method: POST
body:
mimeType: multipart/form-data
params:
- description: ""
disabled: false
fileName: /Users/eero/Downloads/IMG_9469.jpeg
id: pair_4cff79d4ff6a4d8cb76b54c20a98d33d
name: files
type: file
value: ""
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: multipart/form-data
- disabled: false
id: pair_242231deb131471fa7eac1ad5c1b7124
name: Apikey
value: 809bc4b1-ff8f-4e42-af69-c8896c1f58b0
authentication: {}
metaSortKey: -1586364741988
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_62f57f28cd0144558343e7f716ed9c06
parentId: wrk_a08eec5933a744babfdcadbcf3636df9
modified: 1607810235361
created: 1607810235361
name: external
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1607810235361
_type: request_group
- _id: wrk_a08eec5933a744babfdcadbcf3636df9
parentId: null
modified: 1576010197508
created: 1574718948288
name: skole
description: ""
scope: null
_type: workspace
- _id: req_8336c55d77ed4b07b9d8d0e924debe69
parentId: fld_122f287f47e4405aa75599c564fbd067
modified: 1608766207979
created: 1608766090455
url: http://localhost:3001/sitemap.xml
name: sitemap.xml
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1608766186429
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_122f287f47e4405aa75599c564fbd067
parentId: wrk_a08eec5933a744babfdcadbcf3636df9
modified: 1608766223595
created: 1608766189553
name: frontend
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1597087488649.5
_type: request_group
- _id: req_b88b299663b945cb822d2bf7812a3d99
parentId: fld_122f287f47e4405aa75599c564fbd067
modified: 1608769543936
created: 1608769479090
url: http://localhost:3001/robots.txt
name: robots.txt
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1608766186379
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_7c6f02a65e1045c69de7425ab279061e
parentId: fld_a9163bffa9904acfa8e51a1d2f25c355
modified: 1586519493960
created: 1586519487676
url: localhost:8000/admin/
name: admin
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1586519487676
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_a9163bffa9904acfa8e51a1d2f25c355
parentId: wrk_a08eec5933a744babfdcadbcf3636df9
modified: 1586519501710
created: 1586364741938
name: views
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1586364741938
_type: request_group
- _id: req_82aed88a8c0a43b8939397c9026cbf20
parentId: fld_a9163bffa9904acfa8e51a1d2f25c355
modified: 1605282367065
created: 1586364755264
url: localhost:8000/healthz/
name: healthz
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1586480804573
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_efda8ac4f43d44448c39d561b9e5b8a0
parentId: fld_a9163bffa9904acfa8e51a1d2f25c355
modified: 1586519525616
created: 1586519517721
url: localhost:8000/graphql/
name: graphql
description: ""
method: GET
body: {}
parameters: []
headers: []
authentication: {}
metaSortKey: -1586442121470
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_5f1623679d134ef0b532c18d886bc70b
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1606421061331
created: 1605256574902
url: localhost:8000/graphql/
name: schema
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query {\n __schema {\n types
{\n name\n description\n __typename\n }\n __typename\n }\n __typename\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003813
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_78601cb821124a789353bc6243fda754
parentId: fld_9348f6e3561e4783a8eb272ff0a7dca0
modified: 1600640971951
created: 1600640963018
name: anonymous
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1600640963018
_type: request_group
- _id: fld_9348f6e3561e4783a8eb272ff0a7dca0
parentId: wrk_a08eec5933a744babfdcadbcf3636df9
modified: 1576105722647
created: 1576105722647
name: query
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1576105722647
_type: request_group
- _id: req_fe0904311402495a97a7351b455fe25b
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1608759653898
created: 1605258015605
url: localhost:8000/graphql/
name: type
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n __type(name: \"UserObjectType\") {\n name\n fields
{\n name\n }\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003806.75
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_97356d5617eb456599276a8e5062077a
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1605968328842
created: 1586889845733
url: localhost:8000/graphql/
name: recursive introspection
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query introspectionFullType($name: String!) {\n __type(name:
$name) {\n ...FullType\n }\n}\n\nfragment FullType on __Type
{\n name\n fields {\n name\n type {\n name\n fields
{\n name\n type {\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n }\n ofType
{\n name\n fields {\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n }\n }\n ofType
{\n name\n fields {\n name\n type
{\n name\n fields {\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n }\n ofType
{\n name\n fields {\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n ofType
{\n name\n fields {\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n ofType
{\n name\n fields
{\n name\n type
{\n name\n }\n }\n ofType
{\n name\n }\n }\n }\n }\n }\n }\n}\n","variables":{"name":"UserObjectType"},"operationName":"introspectionFullType"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003763
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_6d8f411f232d46df812fad91f17bacf3
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1608766826126
created: 1608759657498
url: localhost:8000/graphql/
name: sitemap
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query Sitemap {\n sitemap {\n courses
{\n id\n modified \n }\n resources
{\n id\n modified\n }\n schools
{\n id\n modified\n }\n users
{\n id\n modified\n }\n }\n}\n","operationName":"Sitemap"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003738
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_48f7a2b83d1444e58a46c03c03f02ce1
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674591423
created: 1575994847111
url: localhost:8000/graphql/
name: user
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query User($id: ID!) {\n user(id: $id)
{\n ...userFields\n }\n}\n\nfragment userFields on UserObjectType
{\n id\n username\n email\n score\n title\n bio\n avatar\n avatarThumbnail\n created\n verified\n rank\n unreadActivityCount\n badges
{\n id\n }\n school {\n id\n }\n subject
{\n id\n }\n}\n","variables":{"id":2},"operationName":"User"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003713
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_d88c61ac0cbc4d019982b9353278f30e
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674691101
created: 1576006763453
url: localhost:8000/graphql/
name: course
description: ""
method: GET
body:
mimeType: application/graphql
text: '{"query":"{\n course(id: 1) {\n id\n score\n resources
{\n id\n }\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003663
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_05475a3b07014a2ea1234582553df27d
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674698830
created: 1576158963279
url: localhost:8000/graphql/
name: courses
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query Courses($courseName: String, $courseCode: String,
$subject: ID, $school: ID, $schoolType: ID, $country: ID, $city: ID,
$page: Int, $pageSize: Int, $ordering: String) {\n courses(courseName:
$courseName, courseCode: $courseCode, subject: $subject, school:
$school, schoolType: $schoolType, country: $country, city: $city, page:
$page, pageSize: $pageSize, ordering: $ordering)
{\n page\n pages\n count\n objects
{\n id\n name\n score\n resources
{\n id\n }\n comments
{\n id\n }\n }\n }\n}\n","variables":{"courseName":"test"},"operationName":"Courses"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003613
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_12ac271819214f50b4e1a26a05a3b7de
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674579177
created: 1579861964524
url: localhost:8000/graphql/
name: school
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query School($id: ID!) {\n school(id: $id)
{\n id\n name\n subjects {\n id\n }\n courses
{\n id\n }\n city {\n id\n name\n }\n country
{\n id\n name\n }\n }\n}\n","variables":{"id":1},"operationName":"School"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003513
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_168b583936de463c908a87d28b749b18
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674582381
created: 1579974549119
url: localhost:8000/graphql/
name: resource
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n resource(id: 2)
{\n id\n title\n date\n title\n file\n score\n user
{\n id\n }\n vote
{\n id\n status\n }\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003263
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ce3c283ec3af43e5a2f05d5d909c5f9b
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1611409270111
created: 1611409228341
url: localhost:8000/graphql/
name: reosurces
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query Resources($user: ID, $course: ID, $page: Int, $pageSize:
Int) {\n resources(user: $user, course: $course, page: $page, pageSize:
$pageSize)
{\n page\n pages\n hasNext\n hasPrev\n count\n objects
{\n id\n title\n date\n title\n file\n score\n user
{\n id\n }\n vote
{\n id\n status\n }\n course
{\n id\n code\n name\n }\n }\n }\n}\n","variables":{},"operationName":"Resources"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003238
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_914b113e70a544499113626fc1d64d90
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607623722898
created: 1579861996751
url: localhost:8000/graphql/
name: autocompleteSchools
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n autocompleteSchools {\n id\n name\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003213
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_c7515bdc0cee4a409c827869eb1beda7
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607674091015
created: 1607623690225
url: localhost:8000/graphql/
name: autocompleteSubjects
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"query AutocompleteSubjects($name: String)
{\n autocompleteSubjects(name: $name)
{\n id\n name\n }\n}\n","variables":{"name":""},"operationName":"AutocompleteSubjects"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003188
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_1a0000b4e0934dd28ddc1d742cc7cb0a
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607104796181
created: 1579862026877
url: localhost:8000/graphql/
name: autocompleteSchoolTypes
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n autocompleteSchoolTypes {\n id\n name\n }\n}"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
- description: ""
disabled: false
id: pair_11c72a6efa8948fd9451fca976fb9c7d
name: Accept-Language
value: sv
authentication: {}
metaSortKey: -1576078003163
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_38e6309882b24edab283840dc1147010
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607104795651
created: 1586209808019
url: localhost:8000/graphql/
name: autocompleteCities
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n autocompleteCities {\n id\n name\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576078003113
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_ab0284dfd44e48b5875b074886c17f90
parentId: fld_78601cb821124a789353bc6243fda754
modified: 1607104795106
created: 1586209186016
url: localhost:8000/graphql/
name: autocompleteCountries
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n autocompleteCountries {\n id\n name\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
- description: ""
disabled: false
id: pair_11c72a6efa8948fd9451fca976fb9c7d
name: Accept-Language
value: fi
authentication: {}
metaSortKey: -1576078003063
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_682113388da4490196515346ea9b0c70
parentId: fld_27a8fb9d8aca44e79cccf9b2843015fa
modified: 1607262305617
created: 1579959775614
url: localhost:8000/graphql/
name: userMe
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"{\n userMe {\n id\n username\n badges
{\n id\n name\n }\n }\n}\n"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
- disabled: false
id: pair_242231deb131471fa7eac1ad5c1b7124
name: Authorization
value: JWT
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6InRlc3R1c2VyMiIsImV4cCI6MTU5MDI0MjIzMCwib3JpZ0lhdCI6MTU4OTYzNzQzMH0.mijf0XxLbM8cvSsjGEZpQh6PZ_743LWI7RsgKby8dzA
- name: ""
value: ""
description: ""
id: pair_07ada760366344f5833b7ca5327440b7
authentication: {}
metaSortKey: -1576078003800.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_27a8fb9d8aca44e79cccf9b2843015fa
parentId: fld_9348f6e3561e4783a8eb272ff0a7dca0
modified: 1585393099012
created: 1576704932124
name: token
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1576704932124
_type: request_group
- _id: req_53d402cfcc3f44cc81341357271dafdd
parentId: fld_a1b421d41c314243a61734cf68561dfa
modified: 1607939119225
created: 1576008756424
url: localhost:8000/graphql/
name: register
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"mutation Register($input: RegisterMutationInput!)
{\n register(input: $input) {\n errors
{\n field\n messages\n }\n successMessage\n }\n}\n","variables":{"input":{"username":"123456890","email":"lol@mail.com","password":"123456890"}},"operationName":"Register"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576537461464.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: fld_a1b421d41c314243a61734cf68561dfa
parentId: fld_dcce25186a82442495bbf5feb4a792ce
modified: 1576537488832
created: 1576537488832
name: anonymous
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1576537488832
_type: request_group
- _id: fld_dcce25186a82442495bbf5feb4a792ce
parentId: wrk_a08eec5933a744babfdcadbcf3636df9
modified: 1576105864395
created: 1576105860626
name: mutation
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1576050284804
_type: request_group
- _id: req_13586913f22d4224bc8495f8ef9521e7
parentId: fld_a1b421d41c314243a61734cf68561dfa
modified: 1607279361685
created: 1576009357639
url: localhost:8000/graphql/
name: login (testuser2)
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"mutation Login($input: LoginMutationInput!) {\n login(input:
$input) {\n errors {\n field\n messages\n }\n user
{\n id\n username\n }\n }\n}\n","variables":{"input":{"usernameOrEmail":"testuser2","password":"password"}},"operationName":"Login"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
- description: ""
id: pair_a4b8307a49fe4ee5b632694bcebc0348
name: Accept-Language
value: sv
disabled: false
authentication: {}
metaSortKey: -1576537461414.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_109140d15a034334903020603aea414f
parentId: fld_a1b421d41c314243a61734cf68561dfa
modified: 1607692682369
created: 1580434140292
url: localhost:8000/graphql/
name: login (testuser3)
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"mutation Login($input: LoginMutationInput!) {\n login(input:
$input) {\n errors {\n field\n messages\n }\n user
{\n id\n username\n }\n }\n}\n","variables":{"input":{"usernameOrEmail":"testuser3","password":"password"}},"operationName":"Login"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
authentication: {}
metaSortKey: -1576422596998.5
isPrivate: false
settingStoreCookies: true
settingSendCookies: true
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingFollowRedirects: global
_type: request
- _id: req_408d9d39fab74e49849c8e9a182992fb
parentId: fld_a1b421d41c314243a61734cf68561dfa
modified: 1607299459660
created: 1600022676663
url: localhost:8000/graphql/
name: logout
description: ""
method: POST
body:
mimeType: application/graphql
text: '{"query":"mutation Logout {\n logout
{\n deleted\n }\n}\n","variables":{"input":{"username":"testuser2","email":"testuser2@test.com","bio":"new
bio text here","avatar":""}},"operationName":"Logout"}'
parameters: []
headers:
- id: pair_d3ecbf212959474da4f672981cab6244
name: Content-Type
value: application/json
- description: ""
id: pair_ad6f9e9f47de45478a4f53c946e5d4a9
name: Accept-Language
value: fi