Who acted on a publication
Fetch all profiles that acted on a publication.
Request
Invocation
const result = await client.profile.whoActedOnPublication({
on: '0x0635-0x0f',
where: {
anyOf: [
{
category: OpenActionCategoryType.Collect,
},
],
},
});
query WhoActedOnPublication($request: WhoActedOnPublicationRequest!) {
result: whoActedOnPublication(request: $request) {
items {
...Profile
}
pageInfo {
...PaginatedResultInfo
}
}
}
Response
Paginated result with Profile
Updated about 1 month ago