File size: 664 Bytes
1e92f2d |
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 |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`messageConnection should fetch a threads messages 1`] = `
Object {
"data": Object {
"thread": Object {
"messageConnection": Object {
"edges": Array [
Object {
"node": Object {
"id": "1",
},
},
Object {
"node": Object {
"id": "2",
},
},
Object {
"node": Object {
"id": "3",
},
},
Object {
"node": Object {
"id": "4",
},
},
],
},
},
},
}
`;
|