]> git.r.bdr.sh - rbdr/forum/blob - pacts/forumclient-forumserver.json
Add topics store pact tests
[rbdr/forum] / pacts / forumclient-forumserver.json
1 {
2 "consumer": {
3 "name": "ForumClient"
4 },
5 "provider": {
6 "name": "ForumServer"
7 },
8 "interactions": [
9 {
10 "description": "a request to get a single post",
11 "providerState": "there's data",
12 "request": {
13 "method": "POST",
14 "path": "/graphql",
15 "headers": {
16 "content-type": "application/json"
17 },
18 "body": {
19 "operationName": "GetPost",
20 "query": "query GetPost($id: ID!) {\n post(id: $id) {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n topic {\n id\n title\n __typename\n }\n __typename\n }\n }",
21 "variables": {
22 "id": "8f75eba5-6989-4dd3-b466-e464546ce374"
23 }
24 },
25 "matchingRules": {
26 "$.body.query": {
27 "match": "regex",
28 "regex": "query\\s*GetPost\\(\\$id:\\s*ID!\\)\\s*\\{\\s*post\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*topic\\s*\\{\\s*id\\s*title\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
29 }
30 }
31 },
32 "response": {
33 "status": 200,
34 "headers": {
35 "Content-Type": "application/json; charset=utf-8"
36 },
37 "body": {
38 "data": {
39 "post": {
40 "id": "8f75eba5-6989-4dd3-b466-e464546ce374",
41 "text": "This is a very pacty post",
42 "created_at": 1619976194937,
43 "author": {
44 "id": "a805b3de-cac4-451c-a1e6-f078869c9db9",
45 "handle": "pacts_person"
46 },
47 "topic": {
48 "id": "5c283ce1-0470-4b98-86f5-1fec9a22c9ac",
49 "title": "The parent pacts topic"
50 }
51 }
52 }
53 },
54 "matchingRules": {
55 "$.body.data.post": {
56 "match": "type"
57 },
58 "$.body.data.post.id": {
59 "match": "type"
60 },
61 "$.body.data.post.text": {
62 "match": "type"
63 },
64 "$.body.data.post.created_at": {
65 "match": "type"
66 },
67 "$.body.data.post.author": {
68 "match": "type"
69 },
70 "$.body.data.post.author.id": {
71 "match": "type"
72 },
73 "$.body.data.post.author.handle": {
74 "match": "type"
75 },
76 "$.body.data.post.topic": {
77 "match": "type"
78 },
79 "$.body.data.post.topic.id": {
80 "match": "type"
81 },
82 "$.body.data.post.topic.title": {
83 "match": "type"
84 }
85 }
86 }
87 },
88 {
89 "description": "a request to get a single post",
90 "providerState": "there's no data",
91 "request": {
92 "method": "POST",
93 "path": "/graphql",
94 "headers": {
95 "content-type": "application/json"
96 },
97 "body": {
98 "operationName": "GetPost",
99 "query": "query GetPost($id: ID!) {\n post(id: $id) {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n topic {\n id\n title\n __typename\n }\n __typename\n }\n }",
100 "variables": {
101 "id": "8f75eba5-6989-4dd3-b466-e464546ce374"
102 }
103 },
104 "matchingRules": {
105 "$.body.query": {
106 "match": "regex",
107 "regex": "query\\s*GetPost\\(\\$id:\\s*ID!\\)\\s*\\{\\s*post\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*topic\\s*\\{\\s*id\\s*title\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
108 }
109 }
110 },
111 "response": {
112 "status": 200,
113 "headers": {
114 "Content-Type": "application/json; charset=utf-8"
115 },
116 "body": {
117 "data": {
118 "post": null
119 }
120 }
121 }
122 },
123 {
124 "description": "a request to get a single post",
125 "providerState": "there's an error",
126 "request": {
127 "method": "POST",
128 "path": "/graphql",
129 "headers": {
130 "content-type": "application/json"
131 },
132 "body": {
133 "operationName": "GetPost",
134 "query": "query GetPost($id: ID!) {\n post(id: $id) {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n topic {\n id\n title\n __typename\n }\n __typename\n }\n }",
135 "variables": {
136 "id": "8f75eba5-6989-4dd3-b466-e464546ce374"
137 }
138 },
139 "matchingRules": {
140 "$.body.query": {
141 "match": "regex",
142 "regex": "query\\s*GetPost\\(\\$id:\\s*ID!\\)\\s*\\{\\s*post\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*topic\\s*\\{\\s*id\\s*title\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
143 }
144 }
145 },
146 "response": {
147 "status": 500,
148 "headers": {
149 }
150 }
151 },
152 {
153 "description": "a request to list the forums",
154 "providerState": "there's data",
155 "request": {
156 "method": "POST",
157 "path": "/graphql",
158 "headers": {
159 "content-type": "application/json"
160 },
161 "body": {
162 "operationName": "GetForums",
163 "query": "query GetForums {\n forums {\n id\n glyph\n label\n position\n __typename\n }\n }",
164 "variables": {
165 }
166 },
167 "matchingRules": {
168 "$.body.query": {
169 "match": "regex",
170 "regex": "query\\s*GetForums\\s*\\{\\s*forums\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*__typename\\s*\\}\\s*\\}"
171 }
172 }
173 },
174 "response": {
175 "status": 200,
176 "headers": {
177 "Content-Type": "application/json; charset=utf-8"
178 },
179 "body": {
180 "data": {
181 "forums": [
182 {
183 "id": "butter",
184 "glyph": "⌘",
185 "label": "test_forums.butter",
186 "position": 1
187 }
188 ]
189 }
190 },
191 "matchingRules": {
192 "$.body.data.forums": {
193 "min": 1
194 },
195 "$.body.data.forums[*].*": {
196 "match": "type"
197 },
198 "$.body.data.forums[*].id": {
199 "match": "type"
200 },
201 "$.body.data.forums[*].glyph": {
202 "match": "type"
203 },
204 "$.body.data.forums[*].label": {
205 "match": "type"
206 },
207 "$.body.data.forums[*].position": {
208 "match": "type"
209 }
210 }
211 }
212 },
213 {
214 "description": "a request to get a single forum",
215 "providerState": "there's data",
216 "request": {
217 "method": "POST",
218 "path": "/graphql",
219 "headers": {
220 "content-type": "application/json"
221 },
222 "body": {
223 "operationName": "GetForum",
224 "query": "query GetForum($id: ID!) {\n forum(id: $id) {\n id\n glyph\n label\n position\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
225 "variables": {
226 "id": "freezer"
227 }
228 },
229 "matchingRules": {
230 "$.body.query": {
231 "match": "regex",
232 "regex": "query\\s*GetForum\\(\\$id:\\s*ID!\\)\\s*\\{\\s*forum\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
233 }
234 }
235 },
236 "response": {
237 "status": 200,
238 "headers": {
239 "Content-Type": "application/json; charset=utf-8"
240 },
241 "body": {
242 "data": {
243 "forum": {
244 "id": "freezer",
245 "glyph": "✭",
246 "label": "test_forums.freezer",
247 "position": 3,
248 "topics": [
249 {
250 "id": "629de02c-151a-4db7-bb86-43b2add8a15a",
251 "title": "Very pacty topic",
252 "updated_at": 1619954611616,
253 "ttl": 3601
254 }
255 ]
256 }
257 }
258 },
259 "matchingRules": {
260 "$.body.data.forum": {
261 "match": "type"
262 },
263 "$.body.data.forum.glyph": {
264 "match": "type"
265 },
266 "$.body.data.forum.label": {
267 "match": "type"
268 },
269 "$.body.data.forum.position": {
270 "match": "type"
271 },
272 "$.body.data.forum.topics": {
273 "min": 1
274 },
275 "$.body.data.forum.topics[*].*": {
276 "match": "type"
277 },
278 "$.body.data.forum.topics[*].id": {
279 "match": "type"
280 },
281 "$.body.data.forum.topics[*].title": {
282 "match": "type"
283 },
284 "$.body.data.forum.topics[*].updated_at": {
285 "match": "type"
286 },
287 "$.body.data.forum.topics[*].ttl": {
288 "match": "type"
289 }
290 }
291 }
292 },
293 {
294 "description": "a request to list the forums",
295 "providerState": "there's no data",
296 "request": {
297 "method": "POST",
298 "path": "/graphql",
299 "headers": {
300 "content-type": "application/json"
301 },
302 "body": {
303 "operationName": "GetForums",
304 "query": "query GetForums {\n forums {\n id\n glyph\n label\n position\n __typename\n }\n }",
305 "variables": {
306 }
307 },
308 "matchingRules": {
309 "$.body.query": {
310 "match": "regex",
311 "regex": "query\\s*GetForums\\s*\\{\\s*forums\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*__typename\\s*\\}\\s*\\}"
312 }
313 }
314 },
315 "response": {
316 "status": 200,
317 "headers": {
318 "Content-Type": "application/json; charset=utf-8"
319 },
320 "body": {
321 "data": {
322 "forums": [
323
324 ]
325 }
326 }
327 }
328 },
329 {
330 "description": "a request to get a single forum",
331 "providerState": "there's no data",
332 "request": {
333 "method": "POST",
334 "path": "/graphql",
335 "headers": {
336 "content-type": "application/json"
337 },
338 "body": {
339 "operationName": "GetForum",
340 "query": "query GetForum($id: ID!) {\n forum(id: $id) {\n id\n glyph\n label\n position\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
341 "variables": {
342 "id": "freezer"
343 }
344 },
345 "matchingRules": {
346 "$.body.query": {
347 "match": "regex",
348 "regex": "query\\s*GetForum\\(\\$id:\\s*ID!\\)\\s*\\{\\s*forum\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
349 }
350 }
351 },
352 "response": {
353 "status": 200,
354 "headers": {
355 "Content-Type": "application/json; charset=utf-8"
356 },
357 "body": {
358 "data": {
359 "forum": null
360 }
361 }
362 }
363 },
364 {
365 "description": "a request to list the forums",
366 "providerState": "there's an error",
367 "request": {
368 "method": "POST",
369 "path": "/graphql",
370 "headers": {
371 "content-type": "application/json"
372 },
373 "body": {
374 "operationName": "GetForums",
375 "query": "query GetForums {\n forums {\n id\n glyph\n label\n position\n __typename\n }\n }",
376 "variables": {
377 }
378 },
379 "matchingRules": {
380 "$.body.query": {
381 "match": "regex",
382 "regex": "query\\s*GetForums\\s*\\{\\s*forums\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*__typename\\s*\\}\\s*\\}"
383 }
384 }
385 },
386 "response": {
387 "status": 500,
388 "headers": {
389 }
390 }
391 },
392 {
393 "description": "a request to get a single forum",
394 "providerState": "there's an error",
395 "request": {
396 "method": "POST",
397 "path": "/graphql",
398 "headers": {
399 "content-type": "application/json"
400 },
401 "body": {
402 "operationName": "GetForum",
403 "query": "query GetForum($id: ID!) {\n forum(id: $id) {\n id\n glyph\n label\n position\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
404 "variables": {
405 "id": "freezer"
406 }
407 },
408 "matchingRules": {
409 "$.body.query": {
410 "match": "regex",
411 "regex": "query\\s*GetForum\\(\\$id:\\s*ID!\\)\\s*\\{\\s*forum\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*glyph\\s*label\\s*position\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
412 }
413 }
414 },
415 "response": {
416 "status": 500,
417 "headers": {
418 }
419 }
420 },
421 {
422 "description": "a request to get a single tag",
423 "providerState": "there's data",
424 "request": {
425 "method": "POST",
426 "path": "/graphql",
427 "headers": {
428 "content-type": "application/json"
429 },
430 "body": {
431 "operationName": "GetTag",
432 "query": "query GetTag($id: ID!) {\n tag(id: $id) {\n id\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
433 "variables": {
434 "id": "pineapple"
435 }
436 },
437 "matchingRules": {
438 "$.body.query": {
439 "match": "regex",
440 "regex": "query\\s*GetTag\\(\\$id:\\s*ID!\\)\\s*\\{\\s*tag\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
441 }
442 }
443 },
444 "response": {
445 "status": 200,
446 "headers": {
447 "Content-Type": "application/json; charset=utf-8"
448 },
449 "body": {
450 "data": {
451 "tag": {
452 "id": "pineapple",
453 "topics": [
454 {
455 "id": "cd038ae7-e8b4-4e38-9543-3d697e69ac34",
456 "title": "This topic is about pineapples",
457 "updated_at": 1619978944077,
458 "ttl": 3555
459 }
460 ]
461 }
462 }
463 },
464 "matchingRules": {
465 "$.body.data.tag.id": {
466 "match": "type"
467 },
468 "$.body.data.tag.topics": {
469 "min": 1
470 },
471 "$.body.data.tag.topics[*].*": {
472 "match": "type"
473 },
474 "$.body.data.tag.topics[*].id": {
475 "match": "type"
476 },
477 "$.body.data.tag.topics[*].title": {
478 "match": "type"
479 },
480 "$.body.data.tag.topics[*].updated_at": {
481 "match": "type"
482 },
483 "$.body.data.tag.topics[*].ttl": {
484 "match": "type"
485 }
486 }
487 }
488 },
489 {
490 "description": "a request to get a single tag",
491 "providerState": "there's no data",
492 "request": {
493 "method": "POST",
494 "path": "/graphql",
495 "headers": {
496 "content-type": "application/json"
497 },
498 "body": {
499 "operationName": "GetTag",
500 "query": "query GetTag($id: ID!) {\n tag(id: $id) {\n id\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
501 "variables": {
502 "id": "pineapple"
503 }
504 },
505 "matchingRules": {
506 "$.body.query": {
507 "match": "regex",
508 "regex": "query\\s*GetTag\\(\\$id:\\s*ID!\\)\\s*\\{\\s*tag\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
509 }
510 }
511 },
512 "response": {
513 "status": 200,
514 "headers": {
515 "Content-Type": "application/json; charset=utf-8"
516 },
517 "body": {
518 "data": {
519 "tag": null
520 }
521 }
522 }
523 },
524 {
525 "description": "a request to get a single tag",
526 "providerState": "there's an error",
527 "request": {
528 "method": "POST",
529 "path": "/graphql",
530 "headers": {
531 "content-type": "application/json"
532 },
533 "body": {
534 "operationName": "GetTag",
535 "query": "query GetTag($id: ID!) {\n tag(id: $id) {\n id\n topics {\n id\n title\n updated_at\n ttl\n __typename\n }\n __typename\n }\n }",
536 "variables": {
537 "id": "pineapple"
538 }
539 },
540 "matchingRules": {
541 "$.body.query": {
542 "match": "regex",
543 "regex": "query\\s*GetTag\\(\\$id:\\s*ID!\\)\\s*\\{\\s*tag\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*topics\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
544 }
545 }
546 },
547 "response": {
548 "status": 500,
549 "headers": {
550 }
551 }
552 },
553 {
554 "description": "a request to get a single topic",
555 "providerState": "there's data",
556 "request": {
557 "method": "POST",
558 "path": "/graphql",
559 "headers": {
560 "content-type": "application/json"
561 },
562 "body": {
563 "operationName": "GetTopic",
564 "query": "query GetTopic($id: ID!) {\n topic(id: $id) {\n id\n title\n updated_at\n ttl\n forum {\n id\n glyph\n label\n __typename\n }\n tags {\n id\n weight\n __typename\n }\n posts {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n __typename\n }\n __typename\n }\n }",
565 "variables": {
566 "id": "0b58959d-d448-4a4e-84b6-35e5ac0028d1"
567 }
568 },
569 "matchingRules": {
570 "$.body.query": {
571 "match": "regex",
572 "regex": "query\\s*GetTopic\\(\\$id:\\s*ID!\\)\\s*\\{\\s*topic\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*forum\\s*\\{\\s*id\\s*glyph\\s*label\\s*__typename\\s*\\}\\s*tags\\s*\\{\\s*id\\s*weight\\s*__typename\\s*\\}\\s*posts\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
573 }
574 }
575 },
576 "response": {
577 "status": 200,
578 "headers": {
579 "Content-Type": "application/json; charset=utf-8"
580 },
581 "body": {
582 "data": {
583 "topic": {
584 "id": "0b58959d-d448-4a4e-84b6-35e5ac0028d1",
585 "title": "The pacty topic of the day",
586 "updated_at": 1619979888906,
587 "ttl": 3399,
588 "forum": {
589 "id": "cucumber",
590 "glyph": "✽",
591 "label": "test_forums.cucumber"
592 },
593 "tags": [
594 {
595 "id": "skunk",
596 "weight": 44
597 }
598 ],
599 "posts": [
600 {
601 "id": "ed93530e-6f9c-4701-91ef-14f9e0ed3e26",
602 "text": "The content of this post is very relevant",
603 "created_at": 1619979889798,
604 "author": {
605 "id": "07fb2ba0-0945-464a-b215-873296710c8c",
606 "handle": "cucumber_fan92"
607 }
608 }
609 ]
610 }
611 }
612 },
613 "matchingRules": {
614 "$.body.data.topic.id": {
615 "match": "type"
616 },
617 "$.body.data.topic.title": {
618 "match": "type"
619 },
620 "$.body.data.topic.updated_at": {
621 "match": "type"
622 },
623 "$.body.data.topic.ttl": {
624 "match": "type"
625 },
626 "$.body.data.topic.forum.id": {
627 "match": "type"
628 },
629 "$.body.data.topic.forum.glyph": {
630 "match": "type"
631 },
632 "$.body.data.topic.forum.label": {
633 "match": "type"
634 },
635 "$.body.data.topic.tags": {
636 "min": 1
637 },
638 "$.body.data.topic.tags[*].*": {
639 "match": "type"
640 },
641 "$.body.data.topic.tags[*].id": {
642 "match": "type"
643 },
644 "$.body.data.topic.tags[*].weight": {
645 "match": "type"
646 },
647 "$.body.data.topic.posts": {
648 "min": 1
649 },
650 "$.body.data.topic.posts[*].*": {
651 "match": "type"
652 },
653 "$.body.data.topic.posts[*].id": {
654 "match": "type"
655 },
656 "$.body.data.topic.posts[*].text": {
657 "match": "type"
658 },
659 "$.body.data.topic.posts[*].created_at": {
660 "match": "type"
661 },
662 "$.body.data.topic.posts[*].author": {
663 "match": "type"
664 },
665 "$.body.data.topic.posts[*].author.id": {
666 "match": "type"
667 },
668 "$.body.data.topic.posts[*].author.handle": {
669 "match": "type"
670 }
671 }
672 }
673 },
674 {
675 "description": "a request to get a single topic",
676 "providerState": "there's no data",
677 "request": {
678 "method": "POST",
679 "path": "/graphql",
680 "headers": {
681 "content-type": "application/json"
682 },
683 "body": {
684 "operationName": "GetTopic",
685 "query": "query GetTopic($id: ID!) {\n topic(id: $id) {\n id\n title\n updated_at\n ttl\n forum {\n id\n glyph\n label\n __typename\n }\n tags {\n id\n weight\n __typename\n }\n posts {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n __typename\n }\n __typename\n }\n }",
686 "variables": {
687 "id": "0b58959d-d448-4a4e-84b6-35e5ac0028d1"
688 }
689 },
690 "matchingRules": {
691 "$.body.query": {
692 "match": "regex",
693 "regex": "query\\s*GetTopic\\(\\$id:\\s*ID!\\)\\s*\\{\\s*topic\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*forum\\s*\\{\\s*id\\s*glyph\\s*label\\s*__typename\\s*\\}\\s*tags\\s*\\{\\s*id\\s*weight\\s*__typename\\s*\\}\\s*posts\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
694 }
695 }
696 },
697 "response": {
698 "status": 200,
699 "headers": {
700 "Content-Type": "application/json; charset=utf-8"
701 },
702 "body": {
703 "data": {
704 "topic": null
705 }
706 }
707 }
708 },
709 {
710 "description": "a request to get a single topic",
711 "providerState": "there's an error",
712 "request": {
713 "method": "POST",
714 "path": "/graphql",
715 "headers": {
716 "content-type": "application/json"
717 },
718 "body": {
719 "operationName": "GetTopic",
720 "query": "query GetTopic($id: ID!) {\n topic(id: $id) {\n id\n title\n updated_at\n ttl\n forum {\n id\n glyph\n label\n __typename\n }\n tags {\n id\n weight\n __typename\n }\n posts {\n id\n text\n created_at\n author {\n id\n handle\n __typename\n }\n __typename\n }\n __typename\n }\n }",
721 "variables": {
722 "id": "0b58959d-d448-4a4e-84b6-35e5ac0028d1"
723 }
724 },
725 "matchingRules": {
726 "$.body.query": {
727 "match": "regex",
728 "regex": "query\\s*GetTopic\\(\\$id:\\s*ID!\\)\\s*\\{\\s*topic\\(id:\\s*\\$id\\)\\s*\\{\\s*id\\s*title\\s*updated_at\\s*ttl\\s*forum\\s*\\{\\s*id\\s*glyph\\s*label\\s*__typename\\s*\\}\\s*tags\\s*\\{\\s*id\\s*weight\\s*__typename\\s*\\}\\s*posts\\s*\\{\\s*id\\s*text\\s*created_at\\s*author\\s*\\{\\s*id\\s*handle\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*__typename\\s*\\}\\s*\\}"
729 }
730 }
731 },
732 "response": {
733 "status": 500,
734 "headers": {
735 }
736 }
737 }
738 ],
739 "metadata": {
740 "pactSpecification": {
741 "version": "2.0.0"
742 }
743 }
744 }