19 lines
381 B
GraphQL
19 lines
381 B
GraphQL
query ReactionsDefault {
|
|
user(login: "$login") {
|
|
login
|
|
$type($after first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
|
|
edges {
|
|
cursor
|
|
node {
|
|
createdAt
|
|
reactions(last: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
|
|
nodes {
|
|
content
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|