Label profiles in feeds (#805)
* Label profiles in feeds * send empty array
This commit is contained in:
parent
521c1c1edb
commit
d6ac47d76e
packages/pds
src/app-view/services/feed
tests
__snapshots__
event-stream/__snapshots__
seeds
views/__snapshots__
@ -78,37 +78,40 @@ export class FeedService {
|
||||
): Promise<ActorViewMap> {
|
||||
if (dids.length < 1) return {}
|
||||
const { ref } = this.db.db.dynamic
|
||||
const actors = await this.db.db
|
||||
.selectFrom('did_handle')
|
||||
.where('did_handle.did', 'in', dids)
|
||||
.leftJoin('profile', 'profile.creator', 'did_handle.did')
|
||||
.selectAll('did_handle')
|
||||
.select([
|
||||
'profile.uri as profileUri',
|
||||
'profile.displayName as displayName',
|
||||
'profile.description as description',
|
||||
'profile.avatarCid as avatarCid',
|
||||
'profile.indexedAt as indexedAt',
|
||||
this.db.db
|
||||
.selectFrom('follow')
|
||||
.where('creator', '=', requester)
|
||||
.whereRef('subjectDid', '=', ref('did_handle.did'))
|
||||
.select('uri')
|
||||
.as('requesterFollowing'),
|
||||
this.db.db
|
||||
.selectFrom('follow')
|
||||
.whereRef('creator', '=', ref('did_handle.did'))
|
||||
.where('subjectDid', '=', requester)
|
||||
.select('uri')
|
||||
.as('requesterFollowedBy'),
|
||||
this.db.db
|
||||
.selectFrom('mute')
|
||||
.whereRef('did', '=', ref('did_handle.did'))
|
||||
.where('mutedByDid', '=', requester)
|
||||
.select('did')
|
||||
.as('requesterMuted'),
|
||||
])
|
||||
.execute()
|
||||
const [actors, labels] = await Promise.all([
|
||||
this.db.db
|
||||
.selectFrom('did_handle')
|
||||
.where('did_handle.did', 'in', dids)
|
||||
.leftJoin('profile', 'profile.creator', 'did_handle.did')
|
||||
.selectAll('did_handle')
|
||||
.select([
|
||||
'profile.uri as profileUri',
|
||||
'profile.displayName as displayName',
|
||||
'profile.description as description',
|
||||
'profile.avatarCid as avatarCid',
|
||||
'profile.indexedAt as indexedAt',
|
||||
this.db.db
|
||||
.selectFrom('follow')
|
||||
.where('creator', '=', requester)
|
||||
.whereRef('subjectDid', '=', ref('did_handle.did'))
|
||||
.select('uri')
|
||||
.as('requesterFollowing'),
|
||||
this.db.db
|
||||
.selectFrom('follow')
|
||||
.whereRef('creator', '=', ref('did_handle.did'))
|
||||
.where('subjectDid', '=', requester)
|
||||
.select('uri')
|
||||
.as('requesterFollowedBy'),
|
||||
this.db.db
|
||||
.selectFrom('mute')
|
||||
.whereRef('did', '=', ref('did_handle.did'))
|
||||
.where('mutedByDid', '=', requester)
|
||||
.select('did')
|
||||
.as('requesterMuted'),
|
||||
])
|
||||
.execute(),
|
||||
this.services.label(this.db).getLabelsForProfiles(dids),
|
||||
])
|
||||
return actors.reduce((acc, cur) => {
|
||||
return {
|
||||
...acc,
|
||||
@ -124,6 +127,7 @@ export class FeedService {
|
||||
following: cur?.requesterFollowing || undefined,
|
||||
followedBy: cur?.requesterFollowedBy || undefined,
|
||||
},
|
||||
labels: labels[cur.did] ?? [],
|
||||
},
|
||||
}
|
||||
}, {} as ActorViewMap)
|
||||
|
@ -10,6 +10,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -57,6 +58,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
|
@ -9,6 +9,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -32,6 +33,7 @@ Array [
|
||||
"by": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
@ -45,6 +47,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
@ -58,6 +61,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
@ -91,6 +95,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
@ -193,6 +207,7 @@ Array [
|
||||
"by": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
@ -209,11 +224,12 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -222,8 +238,8 @@ Array [
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"reply": Object {
|
||||
"parent": Object {
|
||||
"cid": "cids(7)",
|
||||
"uri": "record(10)",
|
||||
"cid": "cids(8)",
|
||||
"uri": "record(11)",
|
||||
},
|
||||
"root": Object {
|
||||
"cid": "cids(0)",
|
||||
@ -234,7 +250,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(9)",
|
||||
"uri": "record(10)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"reply": Object {
|
||||
@ -244,13 +260,23 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.images#view",
|
||||
"images": Array [
|
||||
@ -264,19 +290,19 @@ Array [
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"val": "test-label",
|
||||
},
|
||||
Object {
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"val": "test-label-2",
|
||||
},
|
||||
],
|
||||
@ -314,7 +340,7 @@ Array [
|
||||
},
|
||||
"replyCount": 1,
|
||||
"repostCount": 0,
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"root": Object {
|
||||
@ -323,6 +349,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -348,13 +375,14 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(8)",
|
||||
"cid": "cids(9)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -375,7 +403,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(11)",
|
||||
"uri": "record(12)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"reply": Object {
|
||||
@ -385,6 +413,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -409,6 +438,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -436,13 +466,23 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.images#view",
|
||||
"images": Array [
|
||||
@ -456,19 +496,19 @@ Array [
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"val": "test-label",
|
||||
},
|
||||
Object {
|
||||
"cid": "cids(7)",
|
||||
"cid": "cids(8)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"val": "test-label-2",
|
||||
},
|
||||
],
|
||||
@ -506,7 +546,7 @@ Array [
|
||||
},
|
||||
"replyCount": 1,
|
||||
"repostCount": 0,
|
||||
"uri": "record(10)",
|
||||
"uri": "record(11)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"reply": Object {
|
||||
@ -516,6 +556,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -540,6 +581,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -567,11 +609,12 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(9)",
|
||||
"cid": "cids(10)",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record#view",
|
||||
"record": Object {
|
||||
@ -579,6 +622,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
@ -593,6 +637,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
@ -679,11 +724,11 @@ Array [
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(9)",
|
||||
"cid": "cids(10)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(12)",
|
||||
"uri": "record(13)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
@ -702,7 +747,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(12)",
|
||||
"uri": "record(13)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -713,13 +758,23 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(10)",
|
||||
"cid": "cids(11)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -730,7 +785,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(13)",
|
||||
"uri": "record(14)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -741,6 +796,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -765,6 +821,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
@ -778,6 +835,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
@ -811,6 +869,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
@ -914,12 +982,13 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(11)",
|
||||
"cid": "cids(12)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -930,7 +999,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(14)",
|
||||
"uri": "record(15)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -939,6 +1008,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
@ -971,6 +1041,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
@ -1037,7 +1117,7 @@ Array [
|
||||
"repostCount": 0,
|
||||
"uri": "record(3)",
|
||||
"viewer": Object {
|
||||
"like": "record(15)",
|
||||
"like": "record(16)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -1048,6 +1128,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(9)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
@ -1076,11 +1166,12 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(12)",
|
||||
"cid": "cids(13)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -1091,7 +1182,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(16)",
|
||||
"uri": "record(17)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
|
@ -33,7 +33,7 @@ const users = {
|
||||
handle: 'bob.test',
|
||||
password: 'bob-pass',
|
||||
displayName: 'bobby',
|
||||
description: 'hi im bob',
|
||||
description: 'hi im bob label_me',
|
||||
},
|
||||
carol: {
|
||||
email: 'carol@test.com',
|
||||
|
@ -9,6 +9,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -44,6 +45,16 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(4)",
|
||||
"following": "record(3)",
|
||||
@ -93,7 +104,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -123,6 +134,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -150,11 +162,12 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record#view",
|
||||
"record": Object {
|
||||
@ -162,12 +175,13 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(7)",
|
||||
"following": "record(8)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(5)",
|
||||
"cid": "cids(6)",
|
||||
"embeds": Array [
|
||||
Object {
|
||||
"$type": "app.bsky.embed.record#view",
|
||||
@ -176,15 +190,16 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(3)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(10)",
|
||||
"following": "record(9)",
|
||||
"followedBy": "record(11)",
|
||||
"following": "record(10)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"uri": "record(8)",
|
||||
"uri": "record(9)",
|
||||
"value": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
@ -199,7 +214,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -210,7 +225,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(7)",
|
||||
"$link": "cids(8)",
|
||||
},
|
||||
"size": 12736,
|
||||
},
|
||||
@ -219,8 +234,8 @@ Array [
|
||||
},
|
||||
"record": Object {
|
||||
"record": Object {
|
||||
"cid": "cids(8)",
|
||||
"uri": "record(11)",
|
||||
"cid": "cids(9)",
|
||||
"uri": "record(12)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -230,15 +245,15 @@ Array [
|
||||
},
|
||||
],
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"uri": "record(6)",
|
||||
"uri": "record(7)",
|
||||
"value": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record",
|
||||
"record": Object {
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(8)",
|
||||
"cid": "cids(7)",
|
||||
"uri": "record(9)",
|
||||
},
|
||||
},
|
||||
"facets": Array [
|
||||
@ -262,11 +277,11 @@ Array [
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"uri": "record(6)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
@ -277,15 +292,15 @@ Array [
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record",
|
||||
"record": Object {
|
||||
"cid": "cids(5)",
|
||||
"uri": "record(6)",
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(7)",
|
||||
},
|
||||
},
|
||||
"text": "yoohoo label_me",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(5)",
|
||||
"uri": "record(6)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -296,6 +311,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -322,11 +338,12 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(9)",
|
||||
"cid": "cids(10)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -337,7 +354,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(12)",
|
||||
"uri": "record(13)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -353,6 +370,16 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(1)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(1)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -400,7 +427,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(1)",
|
||||
"$link": "cids(2)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -409,12 +436,12 @@ Array [
|
||||
},
|
||||
"reply": Object {
|
||||
"parent": Object {
|
||||
"cid": "cids(2)",
|
||||
"uri": "record(1)",
|
||||
"cid": "cids(3)",
|
||||
"uri": "record(2)",
|
||||
},
|
||||
"root": Object {
|
||||
"cid": "cids(2)",
|
||||
"uri": "record(1)",
|
||||
"cid": "cids(3)",
|
||||
"uri": "record(2)",
|
||||
},
|
||||
},
|
||||
"text": "hear that label_me label_me_2",
|
||||
@ -431,13 +458,14 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(3)",
|
||||
"following": "record(2)",
|
||||
"followedBy": "record(4)",
|
||||
"following": "record(3)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(2)",
|
||||
"cid": "cids(3)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 3,
|
||||
@ -448,9 +476,9 @@ Array [
|
||||
},
|
||||
"replyCount": 2,
|
||||
"repostCount": 1,
|
||||
"uri": "record(1)",
|
||||
"uri": "record(2)",
|
||||
"viewer": Object {
|
||||
"like": "record(4)",
|
||||
"like": "record(5)",
|
||||
},
|
||||
},
|
||||
"root": Object {
|
||||
@ -459,13 +487,14 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(3)",
|
||||
"following": "record(2)",
|
||||
"followedBy": "record(4)",
|
||||
"following": "record(3)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(2)",
|
||||
"cid": "cids(3)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 3,
|
||||
@ -476,9 +505,9 @@ Array [
|
||||
},
|
||||
"replyCount": 2,
|
||||
"repostCount": 1,
|
||||
"uri": "record(1)",
|
||||
"uri": "record(2)",
|
||||
"viewer": Object {
|
||||
"like": "record(4)",
|
||||
"like": "record(5)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -490,32 +519,16 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(3)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
"record": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"text": "bobby boy here",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(5)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
Object {
|
||||
"post": Object {
|
||||
"author": Object {
|
||||
"avatar": "https://pds.public.url/image/KzkHFsMRQ6oAKCHCRKFA1H-rDdc7VOtvEVpUJ82TwyQ/rs:fill:1000:1000:1:0/plain/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg",
|
||||
"did": "user(0)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(1)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(1)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -527,7 +540,7 @@ Array [
|
||||
"record": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"text": "bob back at it again!",
|
||||
"text": "bobby boy here",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
@ -535,6 +548,42 @@ Array [
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
Object {
|
||||
"post": Object {
|
||||
"author": Object {
|
||||
"avatar": "https://pds.public.url/image/KzkHFsMRQ6oAKCHCRKFA1H-rDdc7VOtvEVpUJ82TwyQ/rs:fill:1000:1000:1:0/plain/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg",
|
||||
"did": "user(0)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(1)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(1)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(5)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
"record": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"text": "bob back at it again!",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(7)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
]
|
||||
`;
|
||||
|
||||
@ -545,6 +594,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(0)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -557,6 +607,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -588,6 +639,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(5)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(4)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(3)",
|
||||
"muted": false,
|
||||
@ -683,7 +744,7 @@ Array [
|
||||
"repostCount": 1,
|
||||
"uri": "record(0)",
|
||||
"viewer": Object {
|
||||
"repost": "record(4)",
|
||||
"repost": "record(5)",
|
||||
},
|
||||
},
|
||||
"reason": Object {
|
||||
@ -691,6 +752,7 @@ Array [
|
||||
"by": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -703,11 +765,12 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(5)",
|
||||
"cid": "cids(6)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -716,19 +779,19 @@ Array [
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"reply": Object {
|
||||
"parent": Object {
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(6)",
|
||||
"cid": "cids(7)",
|
||||
"uri": "record(7)",
|
||||
},
|
||||
"root": Object {
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(6)",
|
||||
"cid": "cids(7)",
|
||||
"uri": "record(7)",
|
||||
},
|
||||
},
|
||||
"text": "of course",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(5)",
|
||||
"uri": "record(6)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"reply": Object {
|
||||
@ -738,13 +801,14 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
"followedBy": "record(9)",
|
||||
"following": "record(8)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 3,
|
||||
@ -755,9 +819,9 @@ Array [
|
||||
},
|
||||
"replyCount": 2,
|
||||
"repostCount": 1,
|
||||
"uri": "record(6)",
|
||||
"uri": "record(7)",
|
||||
"viewer": Object {
|
||||
"like": "record(9)",
|
||||
"like": "record(10)",
|
||||
},
|
||||
},
|
||||
"root": Object {
|
||||
@ -766,13 +830,14 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(8)",
|
||||
"following": "record(7)",
|
||||
"followedBy": "record(9)",
|
||||
"following": "record(8)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 3,
|
||||
@ -783,9 +848,9 @@ Array [
|
||||
},
|
||||
"replyCount": 2,
|
||||
"repostCount": 1,
|
||||
"uri": "record(6)",
|
||||
"uri": "record(7)",
|
||||
"viewer": Object {
|
||||
"like": "record(9)",
|
||||
"like": "record(10)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -795,6 +860,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -825,6 +891,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(5)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(4)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(3)",
|
||||
"muted": false,
|
||||
@ -904,6 +980,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(1)",
|
||||
"muted": false,
|
||||
@ -931,6 +1008,7 @@ Array [
|
||||
"by": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -943,6 +1021,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -955,6 +1034,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -986,6 +1066,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(6)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(8)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"following": "record(7)",
|
||||
"muted": false,
|
||||
@ -1088,11 +1178,12 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -1103,7 +1194,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(8)",
|
||||
"uri": "record(9)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -1117,6 +1208,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(0)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(1)",
|
||||
"muted": true,
|
||||
@ -1130,6 +1222,7 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(3)",
|
||||
"muted": false,
|
||||
@ -1162,6 +1255,16 @@ Array [
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(5)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -1263,12 +1366,13 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(0)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(1)",
|
||||
"muted": true,
|
||||
},
|
||||
},
|
||||
"cid": "cids(5)",
|
||||
"cid": "cids(6)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -1279,7 +1383,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(5)",
|
||||
"uri": "record(6)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
@ -1295,6 +1399,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1332,6 +1437,16 @@ Array [
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(7)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(6)",
|
||||
"muted": false,
|
||||
@ -1380,7 +1495,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -1410,6 +1525,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1441,13 +1557,14 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record#view",
|
||||
"record": Object {
|
||||
@ -1455,11 +1572,12 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(2)",
|
||||
"handle": "dan.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(5)",
|
||||
"cid": "cids(6)",
|
||||
"embeds": Array [
|
||||
Object {
|
||||
"$type": "app.bsky.embed.record#view",
|
||||
@ -1468,13 +1586,14 @@ Array [
|
||||
"author": Object {
|
||||
"did": "user(3)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(6)",
|
||||
"cid": "cids(7)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"uri": "record(9)",
|
||||
"uri": "record(10)",
|
||||
"value": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
@ -1489,7 +1608,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -1500,7 +1619,7 @@ Array [
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(7)",
|
||||
"$link": "cids(8)",
|
||||
},
|
||||
"size": 12736,
|
||||
},
|
||||
@ -1509,8 +1628,8 @@ Array [
|
||||
},
|
||||
"record": Object {
|
||||
"record": Object {
|
||||
"cid": "cids(8)",
|
||||
"uri": "record(10)",
|
||||
"cid": "cids(9)",
|
||||
"uri": "record(11)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -1520,15 +1639,15 @@ Array [
|
||||
},
|
||||
],
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"uri": "record(8)",
|
||||
"uri": "record(9)",
|
||||
"value": Object {
|
||||
"$type": "app.bsky.feed.post",
|
||||
"createdAt": "1970-01-01T00:00:00.000Z",
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record",
|
||||
"record": Object {
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(9)",
|
||||
"cid": "cids(7)",
|
||||
"uri": "record(10)",
|
||||
},
|
||||
},
|
||||
"facets": Array [
|
||||
@ -1552,11 +1671,11 @@ Array [
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(7)",
|
||||
"uri": "record(8)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
@ -1567,17 +1686,17 @@ Array [
|
||||
"embed": Object {
|
||||
"$type": "app.bsky.embed.record",
|
||||
"record": Object {
|
||||
"cid": "cids(5)",
|
||||
"uri": "record(8)",
|
||||
"cid": "cids(6)",
|
||||
"uri": "record(9)",
|
||||
},
|
||||
},
|
||||
"text": "yoohoo label_me",
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(7)",
|
||||
"uri": "record(8)",
|
||||
"viewer": Object {
|
||||
"like": "record(11)",
|
||||
"like": "record(12)",
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -1588,6 +1707,7 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1618,13 +1738,14 @@ Array [
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(9)",
|
||||
"cid": "cids(10)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -1635,7 +1756,7 @@ Array [
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(12)",
|
||||
"uri": "record(13)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
},
|
||||
|
@ -46,12 +46,21 @@ Object {
|
||||
Object {
|
||||
"actor": Object {
|
||||
"avatar": "https://pds.public.url/image/KzkHFsMRQ6oAKCHCRKFA1H-rDdc7VOtvEVpUJ82TwyQ/rs:fill:1000:1000:1:0/plain/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg",
|
||||
"description": "hi im bob",
|
||||
"description": "hi im bob label_me",
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(0)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(6)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(5)",
|
||||
"following": "record(4)",
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -37,14 +37,23 @@ Array [
|
||||
},
|
||||
Object {
|
||||
"avatar": "https://pds.public.url/image/KzkHFsMRQ6oAKCHCRKFA1H-rDdc7VOtvEVpUJ82TwyQ/rs:fill:1000:1000:1:0/plain/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg",
|
||||
"description": "hi im bob",
|
||||
"description": "hi im bob label_me",
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"followersCount": 2,
|
||||
"followsCount": 2,
|
||||
"handle": "bob.test",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(0)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(2)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"postsCount": 3,
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
@ -58,7 +67,7 @@ Array [
|
||||
"labels": Array [],
|
||||
"postsCount": 2,
|
||||
"viewer": Object {
|
||||
"following": "record(2)",
|
||||
"following": "record(3)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
@ -70,7 +79,7 @@ Array [
|
||||
"labels": Array [],
|
||||
"postsCount": 2,
|
||||
"viewer": Object {
|
||||
"followedBy": "record(3)",
|
||||
"followedBy": "record(4)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
|
@ -31,12 +31,21 @@ Array [
|
||||
},
|
||||
Object {
|
||||
"avatar": "https://pds.public.url/image/KzkHFsMRQ6oAKCHCRKFA1H-rDdc7VOtvEVpUJ82TwyQ/rs:fill:1000:1000:1:0/plain/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg",
|
||||
"description": "hi im bob",
|
||||
"description": "hi im bob label_me",
|
||||
"did": "user(3)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(0)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(4)",
|
||||
"following": "record(3)",
|
||||
|
@ -14,6 +14,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -64,6 +65,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -109,6 +111,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -140,6 +143,16 @@ Object {
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(2)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -187,7 +200,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(2)",
|
||||
"$link": "cids(3)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -220,13 +233,14 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(3)",
|
||||
"cid": "cids(4)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -247,9 +261,9 @@ Object {
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 1,
|
||||
"uri": "record(5)",
|
||||
"uri": "record(6)",
|
||||
"viewer": Object {
|
||||
"repost": "record(6)",
|
||||
"repost": "record(7)",
|
||||
},
|
||||
},
|
||||
"replies": Array [],
|
||||
@ -269,6 +283,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -300,6 +315,16 @@ Object {
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(2)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(5)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -347,7 +372,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(2)",
|
||||
"$link": "cids(3)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -390,6 +415,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -409,7 +435,7 @@ Object {
|
||||
"repostCount": 1,
|
||||
"uri": "record(3)",
|
||||
"viewer": Object {
|
||||
"like": "record(6)",
|
||||
"like": "record(7)",
|
||||
},
|
||||
},
|
||||
"replies": Array [],
|
||||
@ -420,6 +446,16 @@ Object {
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(6)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -467,7 +503,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -499,6 +535,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -544,6 +581,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -573,6 +611,7 @@ Object {
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(5)",
|
||||
"muted": false,
|
||||
@ -612,6 +651,16 @@ Object {
|
||||
"did": "user(2)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(7)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -659,7 +708,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -692,13 +741,14 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -719,9 +769,9 @@ Object {
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 1,
|
||||
"uri": "record(7)",
|
||||
"uri": "record(8)",
|
||||
"viewer": Object {
|
||||
"repost": "record(8)",
|
||||
"repost": "record(9)",
|
||||
},
|
||||
},
|
||||
"replies": Array [],
|
||||
@ -741,6 +791,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -770,6 +821,7 @@ Object {
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(5)",
|
||||
"muted": false,
|
||||
@ -808,6 +860,16 @@ Object {
|
||||
"did": "user(2)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(7)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -855,7 +917,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -893,6 +955,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -922,6 +985,16 @@ Object {
|
||||
"did": "user(1)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(2)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(4)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -959,13 +1032,14 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": false,
|
||||
},
|
||||
},
|
||||
"cid": "cids(2)",
|
||||
"cid": "cids(3)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -986,7 +1060,7 @@ Object {
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 0,
|
||||
"uri": "record(4)",
|
||||
"uri": "record(5)",
|
||||
"viewer": Object {},
|
||||
},
|
||||
"replies": Array [],
|
||||
@ -1006,6 +1080,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1044,6 +1119,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1087,6 +1163,7 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
@ -1116,6 +1193,7 @@ Object {
|
||||
"author": Object {
|
||||
"did": "user(1)",
|
||||
"handle": "carol.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"following": "record(5)",
|
||||
"muted": false,
|
||||
@ -1155,6 +1233,16 @@ Object {
|
||||
"did": "user(2)",
|
||||
"displayName": "bobby",
|
||||
"handle": "bob.test",
|
||||
"labels": Array [
|
||||
Object {
|
||||
"cid": "cids(3)",
|
||||
"cts": "1970-01-01T00:00:00.000Z",
|
||||
"neg": false,
|
||||
"src": "did:example:labeler",
|
||||
"uri": "record(7)",
|
||||
"val": "test-label",
|
||||
},
|
||||
],
|
||||
"viewer": Object {
|
||||
"muted": false,
|
||||
},
|
||||
@ -1202,7 +1290,7 @@ Object {
|
||||
"$type": "blob",
|
||||
"mimeType": "image/jpeg",
|
||||
"ref": Object {
|
||||
"$link": "cids(3)",
|
||||
"$link": "cids(4)",
|
||||
},
|
||||
"size": 4114,
|
||||
},
|
||||
@ -1235,13 +1323,14 @@ Object {
|
||||
"did": "user(0)",
|
||||
"displayName": "ali",
|
||||
"handle": "alice.test",
|
||||
"labels": Array [],
|
||||
"viewer": Object {
|
||||
"followedBy": "record(2)",
|
||||
"following": "record(1)",
|
||||
"muted": true,
|
||||
},
|
||||
},
|
||||
"cid": "cids(4)",
|
||||
"cid": "cids(5)",
|
||||
"indexedAt": "1970-01-01T00:00:00.000Z",
|
||||
"labels": Array [],
|
||||
"likeCount": 0,
|
||||
@ -1262,9 +1351,9 @@ Object {
|
||||
},
|
||||
"replyCount": 0,
|
||||
"repostCount": 1,
|
||||
"uri": "record(7)",
|
||||
"uri": "record(8)",
|
||||
"viewer": Object {
|
||||
"repost": "record(8)",
|
||||
"repost": "record(9)",
|
||||
},
|
||||
},
|
||||
"replies": Array [],
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user