Files
metrics/source/plugins/reactions/queries/reactions.graphql
2021-03-09 19:58:53 +01:00

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
}
}
}
}
}
}
}