Add support for reactions plugin (#180)

This commit is contained in:
Simon Lecoq
2021-03-09 19:58:53 +01:00
committed by GitHub
parent a839b0ae2d
commit 732d2a44b0
11 changed files with 230 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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
}
}
}
}
}
}
}